From 9968bfaa5ece4e7cf17d5b8a8c7435ede1e6f241 Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Wed, 23 Jan 2019 11:49:07 +0100 Subject: [PATCH] [DEV] add basic containers --- config/conf.d/README | 2 + config/conf.d/global_auth.conf | 2 + config/conf.d/secured_interface.conf.example | 14 + config/conf.d/unsecrured_interface.conf | 7 + config/mosquitto.conf | 15 + config/passwd | 2 + config/passwd_readable | 2 + docker-compose.yml | 17 + docs/mosquitto.conf | 819 +++ log/mosquitto.log | 5765 ++++++++++++++++++ 10 files changed, 6645 insertions(+) create mode 100644 config/conf.d/README create mode 100644 config/conf.d/global_auth.conf create mode 100644 config/conf.d/secured_interface.conf.example create mode 100644 config/conf.d/unsecrured_interface.conf create mode 100644 config/mosquitto.conf create mode 100644 config/passwd create mode 100644 config/passwd_readable create mode 100644 docker-compose.yml create mode 100644 docs/mosquitto.conf create mode 100644 log/mosquitto.log diff --git a/config/conf.d/README b/config/conf.d/README new file mode 100644 index 0000000..ff3ea76 --- /dev/null +++ b/config/conf.d/README @@ -0,0 +1,2 @@ +Any files placed in this directory that have a .conf ending will be loaded as +config files by the broker. Use this to make your local config diff --git a/config/conf.d/global_auth.conf b/config/conf.d/global_auth.conf new file mode 100644 index 0000000..b933438 --- /dev/null +++ b/config/conf.d/global_auth.conf @@ -0,0 +1,2 @@ +allow_anonymous false +password_file /mosquitto/config/passwd diff --git a/config/conf.d/secured_interface.conf.example b/config/conf.d/secured_interface.conf.example new file mode 100644 index 0000000..1989b55 --- /dev/null +++ b/config/conf.d/secured_interface.conf.example @@ -0,0 +1,14 @@ +# Dist TCP access +listener 8883 +protocol mqtt +#cafile /etc/mosquitto/ca_certificates/ca.crt +certfile /etc/mosquitto/certs/server.crt +keyfile /etc/mosquitto/certs/server.key + +# Dist WS access +listener 9002 +protocol websockets +#cafile /etc/mosquitto/ca_certificates/ca.crt +certfile /etc/mosquitto/certs/server.crt +keyfile /etc/mosquitto/certs/server.key + diff --git a/config/conf.d/unsecrured_interface.conf b/config/conf.d/unsecrured_interface.conf new file mode 100644 index 0000000..1286957 --- /dev/null +++ b/config/conf.d/unsecrured_interface.conf @@ -0,0 +1,7 @@ +# Local TCP access +protocol mqtt +port 1883 + +# Local WS access +listener 9001 +protocol websockets diff --git a/config/mosquitto.conf b/config/mosquitto.conf new file mode 100644 index 0000000..5b5505a --- /dev/null +++ b/config/mosquitto.conf @@ -0,0 +1,15 @@ +# Place your local configuration in /mosquitto/conf.d/ +# +# A full description of the configuration file is at +# /usr/share/doc/mosquitto/examples/mosquitto.conf.example + +pid_file /var/run/mosquitto.pid + +persistence true +persistence_location /mosquitto/data/ + +#log_type all + +log_dest file /mosquitto/log/mosquitto.log + +include_dir /mosquitto/config/conf.d diff --git a/config/passwd b/config/passwd new file mode 100644 index 0000000..df6c2d7 --- /dev/null +++ b/config/passwd @@ -0,0 +1,2 @@ +user1:$6$4pzXSRBH1O3/x4ud$cbxpfQdjdiOmAYUkTYsVxOesIg8/zIzaQTQtfKTo3EPc3untCGR5jpuUEeCnDXukE5+rLa/dQk0mTgTXy2MyxQ== +user2:$6$EGkBD0jZWWriKFDj$tif4hYSzMlGz4QDCEpDjiU+jnJA8tqVu2iCtKCxZoD7jVr5/Ex8vrlIQ+hXKt/VfhcSdGawXFhABOnnHvX00aA== diff --git a/config/passwd_readable b/config/passwd_readable new file mode 100644 index 0000000..184d6ce --- /dev/null +++ b/config/passwd_readable @@ -0,0 +1,2 @@ +user1:MyPassword +user2:mYpASSWORD \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..62b1e6d --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,17 @@ +version: "2" +services: + mqtt: + image: eclipse-mosquitto:latest + restart: always + environment: + - USER_UID=1000 + - USER_GID=1000 + ports: + - "1883:1883" + - "8883:8883" + - "9001:9001" + - "9002:9002" + volumes: + - ./config:/mosquitto/config:ro + - ./data:/mosquitto/data:rw + - ./log:/mosquitto/log:rw \ No newline at end of file diff --git a/docs/mosquitto.conf b/docs/mosquitto.conf new file mode 100644 index 0000000..df1aa8b --- /dev/null +++ b/docs/mosquitto.conf @@ -0,0 +1,819 @@ +# Config file for mosquitto +# +# See mosquitto.conf(5) for more information. +# +# Default values are shown, uncomment to change. +# +# Use the # character to indicate a comment, but only if it is the +# very first character on the line. + +# ================================================================= +# General configuration +# ================================================================= + +# Time in seconds to wait before resending an outgoing QoS=1 or +# QoS=2 message. +#retry_interval 20 + +# Time in seconds between updates of the $SYS tree. +# Set to 0 to disable the publishing of the $SYS tree. +#sys_interval 10 + +# Time in seconds between cleaning the internal message store of +# unreferenced messages. Lower values will result in lower memory +# usage but more processor time, higher values will have the +# opposite effect. +# Setting a value of 0 means the unreferenced messages will be +# disposed of as quickly as possible. +#store_clean_interval 10 + +# Write process id to a file. Default is a blank string which means +# a pid file shouldn't be written. +# This should be set to /var/run/mosquitto.pid if mosquitto is +# being run automatically on boot with an init script and +# start-stop-daemon or similar. +#pid_file + +# When run as root, drop privileges to this user and its primary +# group. +# Leave blank to stay as root, but this is not recommended. +# If run as a non-root user, this setting has no effect. +# Note that on Windows this has no effect and so mosquitto should +# be started by the user you wish it to run as. +#user mosquitto + +# The maximum number of QoS 1 and 2 messages currently inflight per +# client. +# This includes messages that are partway through handshakes and +# those that are being retried. Defaults to 20. Set to 0 for no +# maximum. Setting to 1 will guarantee in-order delivery of QoS 1 +# and 2 messages. +#max_inflight_messages 20 + +# The maximum number of QoS 1 and 2 messages to hold in a queue +# above those that are currently in-flight. Defaults to 100. Set +# to 0 for no maximum (not recommended). +# See also queue_qos0_messages. +#max_queued_messages 100 + +# Set to true to queue messages with QoS 0 when a persistent client is +# disconnected. These messages are included in the limit imposed by +# max_queued_messages. +# Defaults to false. +# This is a non-standard option for the MQTT v3.1 spec but is allowed in +# v3.1.1. +#queue_qos0_messages false + +# This option sets the maximum publish payload size that the broker will allow. +# Received messages that exceed this size will not be accepted by the broker. +# The default value is 0, which means that all valid MQTT messages are +# accepted. MQTT imposes a maximum payload size of 268435455 bytes. +#message_size_limit 0 + +# This option controls whether a client is allowed to connect with a zero +# length client id or not. This option only affects clients using MQTT v3.1.1 +# and later. If set to false, clients connecting with a zero length client id +# are disconnected. If set to true, clients will be allocated a client id by +# the broker. This means it is only useful for clients with clean session set +# to true. +#allow_zero_length_clientid true + +# If allow_zero_length_clientid is true, this option allows you to set a prefix +# to automatically generated client ids to aid visibility in logs. +#auto_id_prefix + +# This option allows persistent clients (those with clean session set to false) +# to be removed if they do not reconnect within a certain time frame. +# +# This is a non-standard option in MQTT V3.1 but allowed in MQTT v3.1.1. +# +# Badly designed clients may set clean session to false whilst using a randomly +# generated client id. This leads to persistent clients that will never +# reconnect. This option allows these clients to be removed. +# +# The expiration period should be an integer followed by one of h d w m y for +# hour, day, week, month and year respectively. For example +# +# persistent_client_expiration 2m +# persistent_client_expiration 14d +# persistent_client_expiration 1y +# +# The default if not set is to never expire persistent clients. +#persistent_client_expiration + +# If a client is subscribed to multiple subscriptions that overlap, e.g. foo/# +# and foo/+/baz , then MQTT expects that when the broker receives a message on +# a topic that matches both subscriptions, such as foo/bar/baz, then the client +# should only receive the message once. +# Mosquitto keeps track of which clients a message has been sent to in order to +# meet this requirement. The allow_duplicate_messages option allows this +# behaviour to be disabled, which may be useful if you have a large number of +# clients subscribed to the same set of topics and are very concerned about +# minimising memory usage. +# It can be safely set to true if you know in advance that your clients will +# never have overlapping subscriptions, otherwise your clients must be able to +# correctly deal with duplicate messages even when then have QoS=2. +#allow_duplicate_messages false + +# The MQTT specification requires that the QoS of a message delivered to a +# subscriber is never upgraded to match the QoS of the subscription. Enabling +# this option changes this behaviour. If upgrade_outgoing_qos is set true, +# messages sent to a subscriber will always match the QoS of its subscription. +# This is a non-standard option explicitly disallowed by the spec. +#upgrade_outgoing_qos false + +# ================================================================= +# Default listener +# ================================================================= + +# IP address/hostname to bind the default listener to. If not +# given, the default listener will not be bound to a specific +# address and so will be accessible to all network interfaces. +# bind_address ip-address/host name +#bind_address + +# Port to use for the default listener. +#port 1883 + +# The maximum number of client connections to allow. This is +# a per listener setting. +# Default is -1, which means unlimited connections. +# Note that other process limits mean that unlimited connections +# are not really possible. Typically the default maximum number of +# connections possible is around 1024. +#max_connections -1 + +# Choose the protocol to use when listening. +# This can be either mqtt or websockets. +# Websockets support is currently disabled by default at compile time. +# Certificate based TLS may be used with websockets, except that +# only the cafile, certfile, keyfile and ciphers options are supported. +#protocol mqtt + +# When a listener is using the websockets protocol, it is possible to serve +# http data as well. Set http_dir to a directory which contains the files you +# wish to serve. If this option is not specified, then no normal http +# connections will be possible. +#http_dir + +# Set use_username_as_clientid to true to replace the clientid that a client +# connected with with its username. This allows authentication to be tied to +# the clientid, which means that it is possible to prevent one client +# disconnecting another by using the same clientid. +# If a client connects with no username it will be disconnected as not +# authorised when this option is set to true. +# Do not use in conjunction with clientid_prefixes. +# See also use_identity_as_username. +#use_username_as_clientid + +# ----------------------------------------------------------------- +# Certificate based SSL/TLS support +# ----------------------------------------------------------------- +# The following options can be used to enable SSL/TLS support for +# this listener. Note that the recommended port for MQTT over TLS +# is 8883, but this must be set manually. +# +# See also the mosquitto-tls man page. + +# At least one of cafile or capath must be defined. They both +# define methods of accessing the PEM encoded Certificate +# Authority certificates that have signed your server certificate +# and that you wish to trust. +# cafile defines the path to a file containing the CA certificates. +# capath defines a directory that will be searched for files +# containing the CA certificates. For capath to work correctly, the +# certificate files must have ".crt" as the file ending and you must run +# "c_rehash " each time you add/remove a certificate. +#cafile +#capath + +# Path to the PEM encoded server certificate. +#certfile + +# Path to the PEM encoded keyfile. +#keyfile + +# This option defines the version of the TLS protocol to use for this listener. +# The default value allows v1.2, v1.1 and v1.0, if they are all supported by +# the version of openssl that the broker was compiled against. For openssl >= +# 1.0.1 the valid values are tlsv1.2 tlsv1.1 and tlsv1. For openssl < 1.0.1 the +# valid values are tlsv1. +#tls_version + +# By default a TLS enabled listener will operate in a similar fashion to a +# https enabled web server, in that the server has a certificate signed by a CA +# and the client will verify that it is a trusted certificate. The overall aim +# is encryption of the network traffic. By setting require_certificate to true, +# the client must provide a valid certificate in order for the network +# connection to proceed. This allows access to the broker to be controlled +# outside of the mechanisms provided by MQTT. +#require_certificate false + +# If require_certificate is true, you may set use_identity_as_username to true +# to use the CN value from the client certificate as a username. If this is +# true, the password_file option will not be used for this listener. +#use_identity_as_username false + +# If you have require_certificate set to true, you can create a certificate +# revocation list file to revoke access to particular client certificates. If +# you have done this, use crlfile to point to the PEM encoded revocation file. +#crlfile + +# If you wish to control which encryption ciphers are used, use the ciphers +# option. The list of available ciphers can be optained using the "openssl +# ciphers" command and should be provided in the same format as the output of +# that command. +# If unset defaults to DEFAULT:!aNULL:!eNULL:!LOW:!EXPORT:!SSLv2:@STRENGTH +#ciphers DEFAULT:!aNULL:!eNULL:!LOW:!EXPORT:!SSLv2:@STRENGTH + +# ----------------------------------------------------------------- +# Pre-shared-key based SSL/TLS support +# ----------------------------------------------------------------- +# The following options can be used to enable PSK based SSL/TLS support for +# this listener. Note that the recommended port for MQTT over TLS is 8883, but +# this must be set manually. +# +# See also the mosquitto-tls man page and the "Certificate based SSL/TLS +# support" section. Only one of certificate or PSK encryption support can be +# enabled for any listener. + +# The psk_hint option enables pre-shared-key support for this listener and also +# acts as an identifier for this listener. The hint is sent to clients and may +# be used locally to aid authentication. The hint is a free form string that +# doesn't have much meaning in itself, so feel free to be creative. +# If this option is provided, see psk_file to define the pre-shared keys to be +# used or create a security plugin to handle them. +#psk_hint + +# Set use_identity_as_username to have the psk identity sent by the client used +# as its username. Authentication will be carried out using the PSK rather than +# the MQTT username/password and so password_file will not be used for this +# listener. +#use_identity_as_username false + +# When using PSK, the encryption ciphers used will be chosen from the list of +# available PSK ciphers. If you want to control which ciphers are available, +# use the "ciphers" option. The list of available ciphers can be optained +# using the "openssl ciphers" command and should be provided in the same format +# as the output of that command. +#ciphers + +# ================================================================= +# Extra listeners +# ================================================================= + +# Listen on a port/ip address combination. By using this variable +# multiple times, mosquitto can listen on more than one port. If +# this variable is used and neither bind_address nor port given, +# then the default listener will not be started. +# The port number to listen on must be given. Optionally, an ip +# address or host name may be supplied as a second argument. In +# this case, mosquitto will attempt to bind the listener to that +# address and so restrict access to the associated network and +# interface. By default, mosquitto will listen on all interfaces. +# listener port-number [ip address/host name] +#listener + +# The maximum number of client connections to allow. This is +# a per listener setting. +# Default is -1, which means unlimited connections. +# Note that other process limits mean that unlimited connections +# are not really possible. Typically the default maximum number of +# connections possible is around 1024. +#max_connections -1 + +# The listener can be restricted to operating within a topic hierarchy using +# the mount_point option. This is achieved be prefixing the mount_point string +# to all topics for any clients connected to this listener. This prefixing only +# happens internally to the broker; the client will not see the prefix. +#mount_point + +# Choose the protocol to use when listening. +# This can be either mqtt or websockets. +# Certificate based TLS may be used with websockets, except that only the +# cafile, certfile, keyfile and ciphers options are supported. +#protocol mqtt + +# When a listener is using the websockets protocol, it is possible to serve +# http data as well. Set http_dir to a directory which contains the files you +# wish to serve. If this option is not specified, then no normal http +# connections will be possible. +#http_dir + +# Set use_username_as_clientid to true to replace the clientid that a client +# connected with with its username. This allows authentication to be tied to +# the clientid, which means that it is possible to prevent one client +# disconnecting another by using the same clientid. +# If a client connects with no username it will be disconnected as not +# authorised when this option is set to true. +# Do not use in conjunction with clientid_prefixes. +# See also use_identity_as_username. +#use_username_as_clientid + +# ----------------------------------------------------------------- +# Certificate based SSL/TLS support +# ----------------------------------------------------------------- +# The following options can be used to enable certificate based SSL/TLS support +# for this listener. Note that the recommended port for MQTT over TLS is 8883, +# but this must be set manually. +# +# See also the mosquitto-tls man page and the "Pre-shared-key based SSL/TLS +# support" section. Only one of certificate or PSK encryption support can be +# enabled for any listener. + +# At least one of cafile or capath must be defined to enable certificate based +# TLS encryption. They both define methods of accessing the PEM encoded +# Certificate Authority certificates that have signed your server certificate +# and that you wish to trust. +# cafile defines the path to a file containing the CA certificates. +# capath defines a directory that will be searched for files +# containing the CA certificates. For capath to work correctly, the +# certificate files must have ".crt" as the file ending and you must run +# "c_rehash " each time you add/remove a certificate. +#cafile +#capath + +# Path to the PEM encoded server certificate. +#certfile + +# Path to the PEM encoded keyfile. +#keyfile + +# By default an TLS enabled listener will operate in a similar fashion to a +# https enabled web server, in that the server has a certificate signed by a CA +# and the client will verify that it is a trusted certificate. The overall aim +# is encryption of the network traffic. By setting require_certificate to true, +# the client must provide a valid certificate in order for the network +# connection to proceed. This allows access to the broker to be controlled +# outside of the mechanisms provided by MQTT. +#require_certificate false + +# If require_certificate is true, you may set use_identity_as_username to true +# to use the CN value from the client certificate as a username. If this is +# true, the password_file option will not be used for this listener. +#use_identity_as_username false + +# If you have require_certificate set to true, you can create a certificate +# revocation list file to revoke access to particular client certificates. If +# you have done this, use crlfile to point to the PEM encoded revocation file. +#crlfile + +# If you wish to control which encryption ciphers are used, use the ciphers +# option. The list of available ciphers can be optained using the "openssl +# ciphers" command and should be provided in the same format as the output of +# that command. +#ciphers + +# ----------------------------------------------------------------- +# Pre-shared-key based SSL/TLS support +# ----------------------------------------------------------------- +# The following options can be used to enable PSK based SSL/TLS support for +# this listener. Note that the recommended port for MQTT over TLS is 8883, but +# this must be set manually. +# +# See also the mosquitto-tls man page and the "Certificate based SSL/TLS +# support" section. Only one of certificate or PSK encryption support can be +# enabled for any listener. + +# The psk_hint option enables pre-shared-key support for this listener and also +# acts as an identifier for this listener. The hint is sent to clients and may +# be used locally to aid authentication. The hint is a free form string that +# doesn't have much meaning in itself, so feel free to be creative. +# If this option is provided, see psk_file to define the pre-shared keys to be +# used or create a security plugin to handle them. +#psk_hint + +# Set use_identity_as_username to have the psk identity sent by the client used +# as its username. Authentication will be carried out using the PSK rather than +# the MQTT username/password and so password_file will not be used for this +# listener. +#use_identity_as_username false + +# When using PSK, the encryption ciphers used will be chosen from the list of +# available PSK ciphers. If you want to control which ciphers are available, +# use the "ciphers" option. The list of available ciphers can be optained +# using the "openssl ciphers" command and should be provided in the same format +# as the output of that command. +#ciphers + +# ================================================================= +# Persistence +# ================================================================= + +# If persistence is enabled, save the in-memory database to disk +# every autosave_interval seconds. If set to 0, the persistence +# database will only be written when mosquitto exits. See also +# autosave_on_changes. +# Note that writing of the persistence database can be forced by +# sending mosquitto a SIGUSR1 signal. +#autosave_interval 1800 + +# If true, mosquitto will count the number of subscription changes, retained +# messages received and queued messages and if the total exceeds +# autosave_interval then the in-memory database will be saved to disk. +# If false, mosquitto will save the in-memory database to disk by treating +# autosave_interval as a time in seconds. +#autosave_on_changes false + +# Save persistent message data to disk (true/false). +# This saves information about all messages, including +# subscriptions, currently in-flight messages and retained +# messages. +# retained_persistence is a synonym for this option. +#persistence false + +# The filename to use for the persistent database, not including +# the path. +#persistence_file mosquitto.db + +# Location for persistent database. Must include trailing / +# Default is an empty string (current directory). +# Set to e.g. /var/lib/mosquitto/ if running as a proper service on Linux or +# similar. +#persistence_location + +# ================================================================= +# Logging +# ================================================================= + +# Places to log to. Use multiple log_dest lines for multiple +# logging destinations. +# Possible destinations are: stdout stderr syslog topic file +# +# stdout and stderr log to the console on the named output. +# +# syslog uses the userspace syslog facility which usually ends up +# in /var/log/messages or similar. +# +# topic logs to the broker topic '$SYS/broker/log/', +# where severity is one of D, E, W, N, I, M which are debug, error, +# warning, notice, information and message. Message type severity is used by +# the subscribe/unsubscribe log_types and publishes log messages to +# $SYS/broker/log/M/susbcribe or $SYS/broker/log/M/unsubscribe. +# +# The file destination requires an additional parameter which is the file to be +# logged to, e.g. "log_dest file /var/log/mosquitto.log". The file will be +# closed and reopened when the broker receives a HUP signal. Only a single file +# destination may be configured. +# +# Note that if the broker is running as a Windows service it will default to +# "log_dest none" and neither stdout nor stderr logging is available. +# Use "log_dest none" if you wish to disable logging. +#log_dest stderr + +# If using syslog logging (not on Windows), messages will be logged to the +# "daemon" facility by default. Use the log_facility option to choose which of +# local0 to local7 to log to instead. The option value should be an integer +# value, e.g. "log_facility 5" to use local5. +#log_facility + +# Types of messages to log. Use multiple log_type lines for logging +# multiple types of messages. +# Possible types are: debug, error, warning, notice, information, +# none, subscribe, unsubscribe, websockets, all. +# Note that debug type messages are for decoding the incoming/outgoing +# network packets. They are not logged in "topics". +#log_type error +#log_type warning +#log_type notice +#log_type information + +# Change the websockets logging level. This is a global option, it is not +# possible to set per listener. This is an integer that is interpreted by +# libwebsockets as a bit mask for its lws_log_levels enum. See the +# libwebsockets documentation for more details. "log_type websockets" must also +# be enabled. +#websockets_log_level 0 + +# If set to true, client connection and disconnection messages will be included +# in the log. +#connection_messages true + +# If set to true, add a timestamp value to each log message. +#log_timestamp true + +# ================================================================= +# Security +# ================================================================= + +# If set, only clients that have a matching prefix on their +# clientid will be allowed to connect to the broker. By default, +# all clients may connect. +# For example, setting "secure-" here would mean a client "secure- +# client" could connect but another with clientid "mqtt" couldn't. +#clientid_prefixes + +# Boolean value that determines whether clients that connect +# without providing a username are allowed to connect. If set to +# false then a password file should be created (see the +# password_file option) to control authenticated client access. +# Defaults to true. +#allow_anonymous true + +# In addition to the clientid_prefixes, allow_anonymous and TLS +# authentication options, username based authentication is also +# possible. The default support is described in "Default +# authentication and topic access control" below. The auth_plugin +# allows another authentication method to be used. +# Specify the path to the loadable plugin and see the +# "Authentication and topic access plugin options" section below. +#auth_plugin + +# ----------------------------------------------------------------- +# Default authentication and topic access control +# ----------------------------------------------------------------- + +# Control access to the broker using a password file. This file can be +# generated using the mosquitto_passwd utility. If TLS support is not compiled +# into mosquitto (it is recommended that TLS support should be included) then +# plain text passwords are used, in which case the file should be a text file +# with lines in the format: +# username:password +# The password (and colon) may be omitted if desired, although this +# offers very little in the way of security. +# +# See the TLS client require_certificate and use_identity_as_username options +# for alternative authentication options. +#password_file + +# Access may also be controlled using a pre-shared-key file. This requires +# TLS-PSK support and a listener configured to use it. The file should be text +# lines in the format: +# identity:key +# The key should be in hexadecimal format without a leading "0x". +#psk_file + +# Control access to topics on the broker using an access control list +# file. If this parameter is defined then only the topics listed will +# have access. +# If the first character of a line of the ACL file is a # it is treated as a +# comment. +# Topic access is added with lines of the format: +# +# topic [read|write|readwrite] +# +# The access type is controlled using "read", "write" or "readwrite". This +# parameter is optional (unless contains a space character) - if not +# given then the access is read/write. can contain the + or # +# wildcards as in subscriptions. +# +# The first set of topics are applied to anonymous clients, assuming +# allow_anonymous is true. User specific topic ACLs are added after a +# user line as follows: +# +# user +# +# The username referred to here is the same as in password_file. It is +# not the clientid. +# +# +# If is also possible to define ACLs based on pattern substitution within the +# topic. The patterns available for substition are: +# +# %c to match the client id of the client +# %u to match the username of the client +# +# The substitution pattern must be the only text for that level of hierarchy. +# +# The form is the same as for the topic keyword, but using pattern as the +# keyword. +# Pattern ACLs apply to all users even if the "user" keyword has previously +# been given. +# +# If using bridges with usernames and ACLs, connection messages can be allowed +# with the following pattern: +# pattern write $SYS/broker/connection/%c/state +# +# pattern [read|write|readwrite] +# +# Example: +# +# pattern write sensor/%u/data +# +#acl_file + +# ----------------------------------------------------------------- +# Authentication and topic access plugin options +# ----------------------------------------------------------------- + +# If the auth_plugin option above is used, define options to pass to the +# plugin here as described by the plugin instructions. All options named +# using the format auth_opt_* will be passed to the plugin, for example: +# +# auth_opt_db_host +# auth_opt_db_port +# auth_opt_db_username +# auth_opt_db_password + + +# ================================================================= +# Bridges +# ================================================================= + +# A bridge is a way of connecting multiple MQTT brokers together. +# Create a new bridge using the "connection" option as described below. Set +# options for the bridges using the remaining parameters. You must specify the +# address and at least one topic to subscribe to. +# Each connection must have a unique name. +# The address line may have multiple host address and ports specified. See +# below in the round_robin description for more details on bridge behaviour if +# multiple addresses are used. +# The direction that the topic will be shared can be chosen by +# specifying out, in or both, where the default value is out. +# The QoS level of the bridged communication can be specified with the next +# topic option. The default QoS level is 0, to change the QoS the topic +# direction must also be given. +# The local and remote prefix options allow a topic to be remapped when it is +# bridged to/from the remote broker. This provides the ability to place a topic +# tree in an appropriate location. +# For more details see the mosquitto.conf man page. +# Multiple topics can be specified per connection, but be careful +# not to create any loops. +# If you are using bridges with cleansession set to false (the default), then +# you may get unexpected behaviour from incoming topics if you change what +# topics you are subscribing to. This is because the remote broker keeps the +# subscription for the old topic. If you have this problem, connect your bridge +# with cleansession set to true, then reconnect with cleansession set to false +# as normal. +#connection +#address [:] [[:]] +#topic [[[out | in | both] qos-level] local-prefix remote-prefix] + +# Set the version of the MQTT protocol to use with for this bridge. Can be one +# of mqttv31 or mqttv311. Defaults to mqttv31. +#bridge_protocol_version mqttv31 + +# If a bridge has topics that have "out" direction, the default behaviour is to +# send an unsubscribe request to the remote broker on that topic. This means +# that changing a topic direction from "in" to "out" will not keep receiving +# incoming messages. Sending these unsubscribe requests is not always +# desirable, setting bridge_attempt_unsubscribe to false will disable sending +# the unsubscribe request. +#bridge_attempt_unsubscribe true + +# If the bridge has more than one address given in the address/addresses +# configuration, the round_robin option defines the behaviour of the bridge on +# a failure of the bridge connection. If round_robin is false, the default +# value, then the first address is treated as the main bridge connection. If +# the connection fails, the other secondary addresses will be attempted in +# turn. Whilst connected to a secondary bridge, the bridge will periodically +# attempt to reconnect to the main bridge until successful. +# If round_robin is true, then all addresses are treated as equals. If a +# connection fails, the next address will be tried and if successful will +# remain connected until it fails +#round_robin false + +# Set the client id to use on the remote end of this bridge connection. If not +# defined, this defaults to 'name.hostname' where name is the connection name +# and hostname is the hostname of this computer. +# This replaces the old "clientid" option to avoid confusion. "clientid" +# remains valid for the time being. +#remote_clientid + +# Set the clientid to use on the local broker. If not defined, this defaults to +# 'local.'. If you are bridging a broker to itself, it is important +# that local_clientid and clientid do not match. +#local_clientid + +# Set the clean session variable for this bridge. +# When set to true, when the bridge disconnects for any reason, all +# messages and subscriptions will be cleaned up on the remote +# broker. Note that with cleansession set to true, there may be a +# significant amount of retained messages sent when the bridge +# reconnects after losing its connection. +# When set to false, the subscriptions and messages are kept on the +# remote broker, and delivered when the bridge reconnects. +#cleansession false + +# If set to true, publish notification messages to the local and remote brokers +# giving information about the state of the bridge connection. Retained +# messages are published to the topic $SYS/broker/connection//state +# unless the notification_topic option is used. +# If the message is 1 then the connection is active, or 0 if the connection has +# failed. +#notifications true + +# Choose the topic on which notification messages for this bridge are +# published. If not set, messages are published on the topic +# $SYS/broker/connection//state +#notification_topic + +# Set the keepalive interval for this bridge connection, in +# seconds. +#keepalive_interval 60 + +# Set the start type of the bridge. This controls how the bridge starts and +# can be one of three types: automatic, lazy and once. Note that RSMB provides +# a fourth start type "manual" which isn't currently supported by mosquitto. +# +# "automatic" is the default start type and means that the bridge connection +# will be started automatically when the broker starts and also restarted +# after a short delay (30 seconds) if the connection fails. +# +# Bridges using the "lazy" start type will be started automatically when the +# number of queued messages exceeds the number set with the "threshold" +# parameter. It will be stopped automatically after the time set by the +# "idle_timeout" parameter. Use this start type if you wish the connection to +# only be active when it is needed. +# +# A bridge using the "once" start type will be started automatically when the +# broker starts but will not be restarted if the connection fails. +#start_type automatic + +# Set the amount of time a bridge using the automatic start type will wait +# until attempting to reconnect. Defaults to 30 seconds. +#restart_timeout 30 + +# Set the amount of time a bridge using the lazy start type must be idle before +# it will be stopped. Defaults to 60 seconds. +#idle_timeout 60 + +# Set the number of messages that need to be queued for a bridge with lazy +# start type to be restarted. Defaults to 10 messages. +# Must be less than max_queued_messages. +#threshold 10 + +# If try_private is set to true, the bridge will attempt to indicate to the +# remote broker that it is a bridge not an ordinary client. If successful, this +# means that loop detection will be more effective and that retained messages +# will be propagated correctly. Not all brokers support this feature so it may +# be necessary to set try_private to false if your bridge does not connect +# properly. +#try_private true + +# Set the username to use when connecting to a broker that requires +# authentication. +# This replaces the old "username" option to avoid confusion. "username" +# remains valid for the time being. +#remote_username + +# Set the password to use when connecting to a broker that requires +# authentication. This option is only used if remote_username is also set. +# This replaces the old "password" option to avoid confusion. "password" +# remains valid for the time being. +#remote_password + +# ----------------------------------------------------------------- +# Certificate based SSL/TLS support +# ----------------------------------------------------------------- +# Either bridge_cafile or bridge_capath must be defined to enable TLS support +# for this bridge. +# bridge_cafile defines the path to a file containing the +# Certificate Authority certificates that have signed the remote broker +# certificate. +# bridge_capath defines a directory that will be searched for files containing +# the CA certificates. For bridge_capath to work correctly, the certificate +# files must have ".crt" as the file ending and you must run "c_rehash " each time you add/remove a certificate. +#bridge_cafile +#bridge_capath + +# Path to the PEM encoded client certificate, if required by the remote broker. +#bridge_certfile + +# Path to the PEM encoded client private key, if required by the remote broker. +#bridge_keyfile + +# When using certificate based encryption, bridge_insecure disables +# verification of the server hostname in the server certificate. This can be +# useful when testing initial server configurations, but makes it possible for +# a malicious third party to impersonate your server through DNS spoofing, for +# example. Use this option in testing only. If you need to resort to using this +# option in a production environment, your setup is at fault and there is no +# point using encryption. +#bridge_insecure false + +# ----------------------------------------------------------------- +# PSK based SSL/TLS support +# ----------------------------------------------------------------- +# Pre-shared-key encryption provides an alternative to certificate based +# encryption. A bridge can be configured to use PSK with the bridge_identity +# and bridge_psk options. These are the client PSK identity, and pre-shared-key +# in hexadecimal format with no "0x". Only one of certificate and PSK based +# encryption can be used on one +# bridge at once. +#bridge_identity +#bridge_psk + + +# ================================================================= +# External config files +# ================================================================= + +# External configuration files may be included by using the +# include_dir option. This defines a directory that will be searched +# for config files. All files that end in '.conf' will be loaded as +# a configuration file. It is best to have this as the last option +# in the main file. This option will only be processed from the main +# configuration file. The directory specified must not contain the +# main configuration file. +#include_dir + +# ================================================================= +# rsmb options - unlikely to ever be supported +# ================================================================= + +#ffdc_output +#max_log_entries +#trace_level +#trace_output diff --git a/log/mosquitto.log b/log/mosquitto.log new file mode 100644 index 0000000..33c1ad3 --- /dev/null +++ b/log/mosquitto.log @@ -0,0 +1,5765 @@ +1548239235: mosquitto version 1.5.5 starting +1548239235: Config loaded from /mosquitto/config/mosquitto.conf. +1548239235: Opening websockets listen socket on port 9001. +1548239235: Opening ipv4 listen socket on port 1883. +1548239235: Opening ipv6 listen socket on port 1883. +1548239288: New connection from 172.21.0.1 on port 1883. +1548239288: Socket error on client , disconnecting. +1548239288: New connection from 172.21.0.1 on port 1883. +1548239288: Socket error on client , disconnecting. +1548239289: New connection from 172.21.0.1 on port 1883. +1548239289: Socket error on client , disconnecting. +1548239289: New connection from 172.21.0.1 on port 1883. +1548239289: Socket error on client , disconnecting. +1548239290: New connection from 172.21.0.1 on port 1883. +1548239290: Socket error on client , disconnecting. +1548239290: New connection from 172.21.0.1 on port 1883. +1548239290: Socket error on client , disconnecting. +1548239291: New connection from 172.21.0.1 on port 1883. +1548239291: Socket error on client , disconnecting. +1548239408: New connection from 172.21.0.1 on port 1883. +1548239408: New client connected from 172.21.0.1 as mosqpub|8774-heretic (c1, k60, u'user1'). +1548239408: Client mosqpub|8774-heretic disconnected. +1548239409: New connection from 172.21.0.1 on port 1883. +1548239409: New client connected from 172.21.0.1 as mosqpub|8775-heretic (c1, k60, u'user1'). +1548239409: Client mosqpub|8775-heretic disconnected. +1548239409: New connection from 172.21.0.1 on port 1883. +1548239409: New client connected from 172.21.0.1 as mosqpub|8776-heretic (c1, k60, u'user1'). +1548239409: Client mosqpub|8776-heretic disconnected. +1548239410: New connection from 172.21.0.1 on port 1883. +1548239410: New client connected from 172.21.0.1 as mosqpub|8777-heretic (c1, k60, u'user1'). +1548239410: Client mosqpub|8777-heretic disconnected. +1548239410: New connection from 172.21.0.1 on port 1883. +1548239410: New client connected from 172.21.0.1 as mosqpub|8778-heretic (c1, k60, u'user1'). +1548239410: Client mosqpub|8778-heretic disconnected. +1548239411: New connection from 172.21.0.1 on port 1883. +1548239411: New client connected from 172.21.0.1 as mosqpub|8779-heretic (c1, k60, u'user1'). +1548239411: Client mosqpub|8779-heretic disconnected. +1548239411: New connection from 172.21.0.1 on port 1883. +1548239411: New client connected from 172.21.0.1 as mosqpub|8780-heretic (c1, k60, u'user1'). +1548239411: Client mosqpub|8780-heretic disconnected. +1548239412: New connection from 172.21.0.1 on port 1883. +1548239412: New client connected from 172.21.0.1 as mosqpub|8781-heretic (c1, k60, u'user1'). +1548239412: Client mosqpub|8781-heretic disconnected. +1548239412: New connection from 172.21.0.1 on port 1883. +1548239412: New client connected from 172.21.0.1 as mosqpub|8782-heretic (c1, k60, u'user1'). +1548239412: Client mosqpub|8782-heretic disconnected. +1548239413: New connection from 172.21.0.1 on port 1883. +1548239413: New client connected from 172.21.0.1 as mosqpub|8783-heretic (c1, k60, u'user1'). +1548239413: Client mosqpub|8783-heretic disconnected. +1548239413: New connection from 172.21.0.1 on port 1883. +1548239413: New client connected from 172.21.0.1 as mosqpub|8784-heretic (c1, k60, u'user1'). +1548239413: Client mosqpub|8784-heretic disconnected. +1548239414: New connection from 172.21.0.1 on port 1883. +1548239414: New client connected from 172.21.0.1 as mosqpub|8785-heretic (c1, k60, u'user1'). +1548239414: Client mosqpub|8785-heretic disconnected. +1548239414: New connection from 172.21.0.1 on port 1883. +1548239414: New client connected from 172.21.0.1 as mosqpub|8786-heretic (c1, k60, u'user1'). +1548239414: Client mosqpub|8786-heretic disconnected. +1548239415: New connection from 172.21.0.1 on port 1883. +1548239415: New client connected from 172.21.0.1 as mosqpub|8787-heretic (c1, k60, u'user1'). +1548239415: Client mosqpub|8787-heretic disconnected. +1548239415: New connection from 172.21.0.1 on port 1883. +1548239415: New client connected from 172.21.0.1 as mosqpub|8788-heretic (c1, k60, u'user1'). +1548239415: Client mosqpub|8788-heretic disconnected. +1548239416: New connection from 172.21.0.1 on port 1883. +1548239416: New client connected from 172.21.0.1 as mosqpub|8789-heretic (c1, k60, u'user1'). +1548239416: Client mosqpub|8789-heretic disconnected. +1548239416: New connection from 172.21.0.1 on port 1883. +1548239416: New client connected from 172.21.0.1 as mosqpub|8790-heretic (c1, k60, u'user1'). +1548239416: Client mosqpub|8790-heretic disconnected. +1548239417: New connection from 172.21.0.1 on port 1883. +1548239417: New client connected from 172.21.0.1 as mosqpub|8791-heretic (c1, k60, u'user1'). +1548239417: Client mosqpub|8791-heretic disconnected. +1548239417: New connection from 172.21.0.1 on port 1883. +1548239417: New client connected from 172.21.0.1 as mosqpub|8792-heretic (c1, k60, u'user1'). +1548239417: Client mosqpub|8792-heretic disconnected. +1548239418: New connection from 172.21.0.1 on port 1883. +1548239418: New client connected from 172.21.0.1 as mosqpub|8793-heretic (c1, k60, u'user1'). +1548239418: Client mosqpub|8793-heretic disconnected. +1548239418: New connection from 172.21.0.1 on port 1883. +1548239418: New client connected from 172.21.0.1 as mosqpub|8794-heretic (c1, k60, u'user1'). +1548239418: Client mosqpub|8794-heretic disconnected. +1548239419: New connection from 172.21.0.1 on port 1883. +1548239419: New client connected from 172.21.0.1 as mosqpub|8795-heretic (c1, k60, u'user1'). +1548239419: Client mosqpub|8795-heretic disconnected. +1548239419: New connection from 172.21.0.1 on port 1883. +1548239419: New client connected from 172.21.0.1 as mosqpub|8796-heretic (c1, k60, u'user1'). +1548239419: Client mosqpub|8796-heretic disconnected. +1548239420: New connection from 172.21.0.1 on port 1883. +1548239420: New client connected from 172.21.0.1 as mosqpub|8797-heretic (c1, k60, u'user1'). +1548239420: Client mosqpub|8797-heretic disconnected. +1548239420: New connection from 172.21.0.1 on port 1883. +1548239420: New client connected from 172.21.0.1 as mosqpub|8798-heretic (c1, k60, u'user1'). +1548239420: Client mosqpub|8798-heretic disconnected. +1548239421: New connection from 172.21.0.1 on port 1883. +1548239421: New client connected from 172.21.0.1 as mosqpub|8799-heretic (c1, k60, u'user1'). +1548239421: Client mosqpub|8799-heretic disconnected. +1548239421: New connection from 172.21.0.1 on port 1883. +1548239421: New client connected from 172.21.0.1 as mosqpub|8800-heretic (c1, k60, u'user1'). +1548239421: Client mosqpub|8800-heretic disconnected. +1548239422: New connection from 172.21.0.1 on port 1883. +1548239422: New client connected from 172.21.0.1 as mosqpub|8801-heretic (c1, k60, u'user1'). +1548239422: Client mosqpub|8801-heretic disconnected. +1548239422: New connection from 172.21.0.1 on port 1883. +1548239422: New client connected from 172.21.0.1 as mosqpub|8802-heretic (c1, k60, u'user1'). +1548239422: Client mosqpub|8802-heretic disconnected. +1548239423: New connection from 172.21.0.1 on port 1883. +1548239423: New client connected from 172.21.0.1 as mosqpub|8803-heretic (c1, k60, u'user1'). +1548239423: Client mosqpub|8803-heretic disconnected. +1548239423: New connection from 172.21.0.1 on port 1883. +1548239423: New client connected from 172.21.0.1 as mosqpub|8804-heretic (c1, k60, u'user1'). +1548239423: Client mosqpub|8804-heretic disconnected. +1548239424: New connection from 172.21.0.1 on port 1883. +1548239424: New client connected from 172.21.0.1 as mosqpub|8805-heretic (c1, k60, u'user1'). +1548239424: Client mosqpub|8805-heretic disconnected. +1548239424: New connection from 172.21.0.1 on port 1883. +1548239424: New client connected from 172.21.0.1 as mosqpub|8806-heretic (c1, k60, u'user1'). +1548239424: Client mosqpub|8806-heretic disconnected. +1548239425: New connection from 172.21.0.1 on port 1883. +1548239425: New client connected from 172.21.0.1 as mosqpub|8807-heretic (c1, k60, u'user1'). +1548239425: Client mosqpub|8807-heretic disconnected. +1548239425: New connection from 172.21.0.1 on port 1883. +1548239425: New client connected from 172.21.0.1 as mosqpub|8808-heretic (c1, k60, u'user1'). +1548239425: Client mosqpub|8808-heretic disconnected. +1548239426: New connection from 172.21.0.1 on port 1883. +1548239426: New client connected from 172.21.0.1 as mosqpub|8809-heretic (c1, k60, u'user1'). +1548239426: Client mosqpub|8809-heretic disconnected. +1548239426: New connection from 172.21.0.1 on port 1883. +1548239426: New client connected from 172.21.0.1 as mosqpub|8810-heretic (c1, k60, u'user1'). +1548239426: Client mosqpub|8810-heretic disconnected. +1548239427: New connection from 172.21.0.1 on port 1883. +1548239427: New client connected from 172.21.0.1 as mosqpub|8811-heretic (c1, k60, u'user1'). +1548239427: Client mosqpub|8811-heretic disconnected. +1548239427: New connection from 172.21.0.1 on port 1883. +1548239427: New client connected from 172.21.0.1 as mosqpub|8812-heretic (c1, k60, u'user1'). +1548239427: Client mosqpub|8812-heretic disconnected. +1548239428: New connection from 172.21.0.1 on port 1883. +1548239428: New client connected from 172.21.0.1 as mosqpub|8813-heretic (c1, k60, u'user1'). +1548239428: Client mosqpub|8813-heretic disconnected. +1548239428: New connection from 172.21.0.1 on port 1883. +1548239428: New client connected from 172.21.0.1 as mosqpub|8814-heretic (c1, k60, u'user1'). +1548239428: Client mosqpub|8814-heretic disconnected. +1548239429: New connection from 172.21.0.1 on port 1883. +1548239429: New client connected from 172.21.0.1 as mosqpub|8815-heretic (c1, k60, u'user1'). +1548239429: Client mosqpub|8815-heretic disconnected. +1548239429: New connection from 172.21.0.1 on port 1883. +1548239429: New client connected from 172.21.0.1 as mosqpub|8818-heretic (c1, k60, u'user1'). +1548239429: Client mosqpub|8818-heretic disconnected. +1548239430: New connection from 172.21.0.1 on port 1883. +1548239430: New client connected from 172.21.0.1 as mosqpub|8819-heretic (c1, k60, u'user1'). +1548239430: Client mosqpub|8819-heretic disconnected. +1548239431: New connection from 172.21.0.1 on port 1883. +1548239431: New client connected from 172.21.0.1 as mosqpub|8820-heretic (c1, k60, u'user1'). +1548239431: Client mosqpub|8820-heretic disconnected. +1548239431: New connection from 172.21.0.1 on port 1883. +1548239431: New client connected from 172.21.0.1 as mosqpub|8821-heretic (c1, k60, u'user1'). +1548239431: Client mosqpub|8821-heretic disconnected. +1548239432: New connection from 172.21.0.1 on port 1883. +1548239432: New client connected from 172.21.0.1 as mosqpub|8822-heretic (c1, k60, u'user1'). +1548239432: Client mosqpub|8822-heretic disconnected. +1548239432: New connection from 172.21.0.1 on port 1883. +1548239432: New client connected from 172.21.0.1 as mosqpub|8824-heretic (c1, k60, u'user1'). +1548239432: Client mosqpub|8824-heretic disconnected. +1548239433: New connection from 172.21.0.1 on port 1883. +1548239433: New client connected from 172.21.0.1 as mosqpub|8825-heretic (c1, k60, u'user1'). +1548239433: Client mosqpub|8825-heretic disconnected. +1548239433: New connection from 172.21.0.1 on port 1883. +1548239433: New client connected from 172.21.0.1 as mosqpub|8827-heretic (c1, k60, u'user1'). +1548239433: Client mosqpub|8827-heretic disconnected. +1548239434: New connection from 172.21.0.1 on port 1883. +1548239434: New client connected from 172.21.0.1 as mosqpub|8828-heretic (c1, k60, u'user1'). +1548239434: Client mosqpub|8828-heretic disconnected. +1548239434: New connection from 172.21.0.1 on port 1883. +1548239434: New client connected from 172.21.0.1 as mosqpub|8829-heretic (c1, k60, u'user1'). +1548239434: Client mosqpub|8829-heretic disconnected. +1548239435: New connection from 172.21.0.1 on port 1883. +1548239435: New client connected from 172.21.0.1 as mosqpub|8830-heretic (c1, k60, u'user1'). +1548239435: Client mosqpub|8830-heretic disconnected. +1548239435: New connection from 172.21.0.1 on port 1883. +1548239435: New client connected from 172.21.0.1 as mosqpub|8831-heretic (c1, k60, u'user1'). +1548239435: Client mosqpub|8831-heretic disconnected. +1548239436: New connection from 172.21.0.1 on port 1883. +1548239436: New client connected from 172.21.0.1 as mosqpub|8832-heretic (c1, k60, u'user1'). +1548239436: Client mosqpub|8832-heretic disconnected. +1548239436: New connection from 172.21.0.1 on port 1883. +1548239436: New client connected from 172.21.0.1 as mosqpub|8833-heretic (c1, k60, u'user1'). +1548239436: Client mosqpub|8833-heretic disconnected. +1548239437: New connection from 172.21.0.1 on port 1883. +1548239437: New client connected from 172.21.0.1 as mosqpub|8834-heretic (c1, k60, u'user1'). +1548239437: Client mosqpub|8834-heretic disconnected. +1548239437: New connection from 172.21.0.1 on port 1883. +1548239437: New client connected from 172.21.0.1 as mosqpub|8835-heretic (c1, k60, u'user1'). +1548239437: Client mosqpub|8835-heretic disconnected. +1548239438: New connection from 172.21.0.1 on port 1883. +1548239438: New client connected from 172.21.0.1 as mosqpub|8836-heretic (c1, k60, u'user1'). +1548239438: Client mosqpub|8836-heretic disconnected. +1548239438: New connection from 172.21.0.1 on port 1883. +1548239438: New client connected from 172.21.0.1 as mosqpub|8837-heretic (c1, k60, u'user1'). +1548239438: Client mosqpub|8837-heretic disconnected. +1548239439: New connection from 172.21.0.1 on port 1883. +1548239439: New client connected from 172.21.0.1 as mosqpub|8838-heretic (c1, k60, u'user1'). +1548239439: Client mosqpub|8838-heretic disconnected. +1548239439: New connection from 172.21.0.1 on port 1883. +1548239439: New client connected from 172.21.0.1 as mosqpub|8839-heretic (c1, k60, u'user1'). +1548239439: Client mosqpub|8839-heretic disconnected. +1548239440: New connection from 172.21.0.1 on port 1883. +1548239440: New client connected from 172.21.0.1 as mosqpub|8840-heretic (c1, k60, u'user1'). +1548239440: Client mosqpub|8840-heretic disconnected. +1548239440: New connection from 172.21.0.1 on port 1883. +1548239440: New client connected from 172.21.0.1 as mosqpub|8841-heretic (c1, k60, u'user1'). +1548239440: Client mosqpub|8841-heretic disconnected. +1548239441: New connection from 172.21.0.1 on port 1883. +1548239441: New client connected from 172.21.0.1 as mosqpub|8842-heretic (c1, k60, u'user1'). +1548239441: Client mosqpub|8842-heretic disconnected. +1548239441: New connection from 172.21.0.1 on port 1883. +1548239441: New client connected from 172.21.0.1 as mosqpub|8843-heretic (c1, k60, u'user1'). +1548239441: Client mosqpub|8843-heretic disconnected. +1548239442: New connection from 172.21.0.1 on port 1883. +1548239442: New client connected from 172.21.0.1 as mosqpub|8844-heretic (c1, k60, u'user1'). +1548239442: Client mosqpub|8844-heretic disconnected. +1548239442: New connection from 172.21.0.1 on port 1883. +1548239442: New client connected from 172.21.0.1 as mosqpub|8845-heretic (c1, k60, u'user1'). +1548239442: Client mosqpub|8845-heretic disconnected. +1548239443: New connection from 172.21.0.1 on port 1883. +1548239443: New client connected from 172.21.0.1 as mosqpub|8846-heretic (c1, k60, u'user1'). +1548239443: Client mosqpub|8846-heretic disconnected. +1548239443: New connection from 172.21.0.1 on port 1883. +1548239443: New client connected from 172.21.0.1 as mosqpub|8847-heretic (c1, k60, u'user1'). +1548239443: Client mosqpub|8847-heretic disconnected. +1548239444: New connection from 172.21.0.1 on port 1883. +1548239444: New client connected from 172.21.0.1 as mosqpub|8848-heretic (c1, k60, u'user1'). +1548239444: Client mosqpub|8848-heretic disconnected. +1548239444: New connection from 172.21.0.1 on port 1883. +1548239444: New client connected from 172.21.0.1 as mosqpub|8849-heretic (c1, k60, u'user1'). +1548239444: Client mosqpub|8849-heretic disconnected. +1548239445: New connection from 172.21.0.1 on port 1883. +1548239445: New client connected from 172.21.0.1 as mosqpub|8850-heretic (c1, k60, u'user1'). +1548239445: Client mosqpub|8850-heretic disconnected. +1548239445: New connection from 172.21.0.1 on port 1883. +1548239445: New client connected from 172.21.0.1 as mosqpub|8851-heretic (c1, k60, u'user1'). +1548239445: Client mosqpub|8851-heretic disconnected. +1548239446: New connection from 172.21.0.1 on port 1883. +1548239446: New client connected from 172.21.0.1 as mosqpub|8852-heretic (c1, k60, u'user1'). +1548239446: Client mosqpub|8852-heretic disconnected. +1548239446: New connection from 172.21.0.1 on port 1883. +1548239446: New client connected from 172.21.0.1 as mosqpub|8853-heretic (c1, k60, u'user1'). +1548239446: Client mosqpub|8853-heretic disconnected. +1548239447: New connection from 172.21.0.1 on port 1883. +1548239447: New client connected from 172.21.0.1 as mosqpub|8854-heretic (c1, k60, u'user1'). +1548239447: Client mosqpub|8854-heretic disconnected. +1548239447: New connection from 172.21.0.1 on port 1883. +1548239447: New client connected from 172.21.0.1 as mosqpub|8855-heretic (c1, k60, u'user1'). +1548239447: Client mosqpub|8855-heretic disconnected. +1548239448: New connection from 172.21.0.1 on port 1883. +1548239448: New client connected from 172.21.0.1 as mosqpub|8856-heretic (c1, k60, u'user1'). +1548239448: Client mosqpub|8856-heretic disconnected. +1548239448: New connection from 172.21.0.1 on port 1883. +1548239448: New client connected from 172.21.0.1 as mosqpub|8857-heretic (c1, k60, u'user1'). +1548239448: Client mosqpub|8857-heretic disconnected. +1548239449: New connection from 172.21.0.1 on port 1883. +1548239449: New client connected from 172.21.0.1 as mosqpub|8858-heretic (c1, k60, u'user1'). +1548239449: Client mosqpub|8858-heretic disconnected. +1548239449: New connection from 172.21.0.1 on port 1883. +1548239449: New client connected from 172.21.0.1 as MqttClient-ba6b072e10014accb226503 (c1, k60, u'user1'). +1548239449: New connection from 172.21.0.1 on port 1883. +1548239449: New client connected from 172.21.0.1 as mosqpub|8878-heretic (c1, k60, u'user1'). +1548239449: Client mosqpub|8878-heretic disconnected. +1548239450: New connection from 172.21.0.1 on port 1883. +1548239450: New client connected from 172.21.0.1 as mosqpub|8879-heretic (c1, k60, u'user1'). +1548239450: Client mosqpub|8879-heretic disconnected. +1548239450: New connection from 172.21.0.1 on port 1883. +1548239450: New client connected from 172.21.0.1 as mosqpub|8880-heretic (c1, k60, u'user1'). +1548239450: Client mosqpub|8880-heretic disconnected. +1548239451: New connection from 172.21.0.1 on port 1883. +1548239451: New client connected from 172.21.0.1 as mosqpub|8881-heretic (c1, k60, u'user1'). +1548239451: Client mosqpub|8881-heretic disconnected. +1548239451: New connection from 172.21.0.1 on port 1883. +1548239451: New client connected from 172.21.0.1 as mosqpub|8882-heretic (c1, k60, u'user1'). +1548239451: Client mosqpub|8882-heretic disconnected. +1548239452: New connection from 172.21.0.1 on port 1883. +1548239452: New client connected from 172.21.0.1 as mosqpub|8883-heretic (c1, k60, u'user1'). +1548239452: Client mosqpub|8883-heretic disconnected. +1548239452: New connection from 172.21.0.1 on port 1883. +1548239452: New client connected from 172.21.0.1 as mosqpub|8884-heretic (c1, k60, u'user1'). +1548239452: Client mosqpub|8884-heretic disconnected. +1548239453: New connection from 172.21.0.1 on port 1883. +1548239453: New client connected from 172.21.0.1 as mosqpub|8885-heretic (c1, k60, u'user1'). +1548239453: Client mosqpub|8885-heretic disconnected. +1548239453: New connection from 172.21.0.1 on port 1883. +1548239453: New client connected from 172.21.0.1 as mosqpub|8886-heretic (c1, k60, u'user1'). +1548239453: Client mosqpub|8886-heretic disconnected. +1548239454: New connection from 172.21.0.1 on port 1883. +1548239454: New client connected from 172.21.0.1 as mosqpub|8887-heretic (c1, k60, u'user1'). +1548239454: Client mosqpub|8887-heretic disconnected. +1548239454: New connection from 172.21.0.1 on port 1883. +1548239454: New client connected from 172.21.0.1 as mosqpub|8893-heretic (c1, k60, u'user1'). +1548239454: Client mosqpub|8893-heretic disconnected. +1548239455: New connection from 172.21.0.1 on port 1883. +1548239455: New client connected from 172.21.0.1 as mosqpub|8894-heretic (c1, k60, u'user1'). +1548239455: Client mosqpub|8894-heretic disconnected. +1548239455: New connection from 172.21.0.1 on port 1883. +1548239455: New client connected from 172.21.0.1 as mosqpub|8895-heretic (c1, k60, u'user1'). +1548239455: Client mosqpub|8895-heretic disconnected. +1548239456: New connection from 172.21.0.1 on port 1883. +1548239456: New client connected from 172.21.0.1 as mosqpub|8896-heretic (c1, k60, u'user1'). +1548239456: Client mosqpub|8896-heretic disconnected. +1548239456: New connection from 172.21.0.1 on port 1883. +1548239456: New client connected from 172.21.0.1 as mosqpub|8897-heretic (c1, k60, u'user1'). +1548239456: Client mosqpub|8897-heretic disconnected. +1548239457: New connection from 172.21.0.1 on port 1883. +1548239457: New client connected from 172.21.0.1 as mosqpub|8898-heretic (c1, k60, u'user1'). +1548239457: Client mosqpub|8898-heretic disconnected. +1548239457: New connection from 172.21.0.1 on port 1883. +1548239457: New client connected from 172.21.0.1 as mosqpub|8899-heretic (c1, k60, u'user1'). +1548239457: Client mosqpub|8899-heretic disconnected. +1548239458: New connection from 172.21.0.1 on port 1883. +1548239458: New client connected from 172.21.0.1 as mosqpub|8900-heretic (c1, k60, u'user1'). +1548239458: Client mosqpub|8900-heretic disconnected. +1548239458: New connection from 172.21.0.1 on port 1883. +1548239458: New client connected from 172.21.0.1 as mosqpub|8901-heretic (c1, k60, u'user1'). +1548239458: Client mosqpub|8901-heretic disconnected. +1548239459: New connection from 172.21.0.1 on port 1883. +1548239459: New client connected from 172.21.0.1 as mosqpub|8902-heretic (c1, k60, u'user1'). +1548239459: Client mosqpub|8902-heretic disconnected. +1548239459: New connection from 172.21.0.1 on port 1883. +1548239459: New client connected from 172.21.0.1 as mosqpub|8908-heretic (c1, k60, u'user1'). +1548239459: Client mosqpub|8908-heretic disconnected. +1548239460: New connection from 172.21.0.1 on port 1883. +1548239460: New client connected from 172.21.0.1 as mosqpub|8909-heretic (c1, k60, u'user1'). +1548239460: Client mosqpub|8909-heretic disconnected. +1548239460: New connection from 172.21.0.1 on port 1883. +1548239460: New client connected from 172.21.0.1 as mosqpub|8910-heretic (c1, k60, u'user1'). +1548239460: Client mosqpub|8910-heretic disconnected. +1548239461: New connection from 172.21.0.1 on port 1883. +1548239461: New client connected from 172.21.0.1 as mosqpub|8911-heretic (c1, k60, u'user1'). +1548239461: Client mosqpub|8911-heretic disconnected. +1548239461: New connection from 172.21.0.1 on port 1883. +1548239461: New client connected from 172.21.0.1 as mosqpub|8912-heretic (c1, k60, u'user1'). +1548239461: Client mosqpub|8912-heretic disconnected. +1548239462: New connection from 172.21.0.1 on port 1883. +1548239462: New client connected from 172.21.0.1 as mosqpub|8913-heretic (c1, k60, u'user1'). +1548239462: Client mosqpub|8913-heretic disconnected. +1548239462: New connection from 172.21.0.1 on port 1883. +1548239462: New client connected from 172.21.0.1 as mosqpub|8914-heretic (c1, k60, u'user1'). +1548239462: Client mosqpub|8914-heretic disconnected. +1548239463: New connection from 172.21.0.1 on port 1883. +1548239463: New client connected from 172.21.0.1 as mosqpub|8915-heretic (c1, k60, u'user1'). +1548239463: Client mosqpub|8915-heretic disconnected. +1548239463: New connection from 172.21.0.1 on port 1883. +1548239463: New client connected from 172.21.0.1 as mosqpub|8916-heretic (c1, k60, u'user1'). +1548239463: Client mosqpub|8916-heretic disconnected. +1548239464: New connection from 172.21.0.1 on port 1883. +1548239464: New client connected from 172.21.0.1 as mosqpub|8917-heretic (c1, k60, u'user1'). +1548239464: Client mosqpub|8917-heretic disconnected. +1548239465: New connection from 172.21.0.1 on port 1883. +1548239465: New client connected from 172.21.0.1 as mosqpub|8918-heretic (c1, k60, u'user1'). +1548239465: Client mosqpub|8918-heretic disconnected. +1548239465: New connection from 172.21.0.1 on port 1883. +1548239465: New client connected from 172.21.0.1 as mosqpub|8921-heretic (c1, k60, u'user1'). +1548239465: Client mosqpub|8921-heretic disconnected. +1548239466: New connection from 172.21.0.1 on port 1883. +1548239466: New client connected from 172.21.0.1 as mosqpub|8924-heretic (c1, k60, u'user1'). +1548239466: Client mosqpub|8924-heretic disconnected. +1548239466: New connection from 172.21.0.1 on port 1883. +1548239466: New client connected from 172.21.0.1 as mosqpub|8925-heretic (c1, k60, u'user1'). +1548239466: Client mosqpub|8925-heretic disconnected. +1548239467: New connection from 172.21.0.1 on port 1883. +1548239467: New client connected from 172.21.0.1 as mosqpub|8926-heretic (c1, k60, u'user1'). +1548239467: Client mosqpub|8926-heretic disconnected. +1548239467: New connection from 172.21.0.1 on port 1883. +1548239467: New client connected from 172.21.0.1 as mosqpub|8928-heretic (c1, k60, u'user1'). +1548239467: Client mosqpub|8928-heretic disconnected. +1548239468: New connection from 172.21.0.1 on port 1883. +1548239468: New client connected from 172.21.0.1 as mosqpub|8929-heretic (c1, k60, u'user1'). +1548239468: Client mosqpub|8929-heretic disconnected. +1548239468: New connection from 172.21.0.1 on port 1883. +1548239468: New client connected from 172.21.0.1 as mosqpub|8930-heretic (c1, k60, u'user1'). +1548239468: Client mosqpub|8930-heretic disconnected. +1548239469: New connection from 172.21.0.1 on port 1883. +1548239469: New client connected from 172.21.0.1 as mosqpub|8933-heretic (c1, k60, u'user1'). +1548239469: Client mosqpub|8933-heretic disconnected. +1548239469: New connection from 172.21.0.1 on port 1883. +1548239469: New client connected from 172.21.0.1 as mosqpub|8934-heretic (c1, k60, u'user1'). +1548239469: Client mosqpub|8934-heretic disconnected. +1548239470: New connection from 172.21.0.1 on port 1883. +1548239470: New client connected from 172.21.0.1 as mosqpub|8935-heretic (c1, k60, u'user1'). +1548239470: Client mosqpub|8935-heretic disconnected. +1548239470: New connection from 172.21.0.1 on port 1883. +1548239470: New client connected from 172.21.0.1 as mosqpub|8936-heretic (c1, k60, u'user1'). +1548239470: Client mosqpub|8936-heretic disconnected. +1548239471: New connection from 172.21.0.1 on port 1883. +1548239471: New client connected from 172.21.0.1 as mosqpub|8937-heretic (c1, k60, u'user1'). +1548239471: Client mosqpub|8937-heretic disconnected. +1548239471: New connection from 172.21.0.1 on port 1883. +1548239471: New client connected from 172.21.0.1 as mosqpub|8939-heretic (c1, k60, u'user1'). +1548239471: Client mosqpub|8939-heretic disconnected. +1548239472: New connection from 172.21.0.1 on port 1883. +1548239472: New client connected from 172.21.0.1 as mosqpub|8940-heretic (c1, k60, u'user1'). +1548239472: Client mosqpub|8940-heretic disconnected. +1548239472: New connection from 172.21.0.1 on port 1883. +1548239472: New client connected from 172.21.0.1 as mosqpub|8941-heretic (c1, k60, u'user1'). +1548239472: Client mosqpub|8941-heretic disconnected. +1548239473: New connection from 172.21.0.1 on port 1883. +1548239473: New client connected from 172.21.0.1 as mosqpub|8942-heretic (c1, k60, u'user1'). +1548239473: Client mosqpub|8942-heretic disconnected. +1548239473: New connection from 172.21.0.1 on port 1883. +1548239473: New client connected from 172.21.0.1 as mosqpub|8943-heretic (c1, k60, u'user1'). +1548239473: Client mosqpub|8943-heretic disconnected. +1548239474: New connection from 172.21.0.1 on port 1883. +1548239474: New client connected from 172.21.0.1 as mosqpub|8944-heretic (c1, k60, u'user1'). +1548239474: Client mosqpub|8944-heretic disconnected. +1548239474: New connection from 172.21.0.1 on port 1883. +1548239474: New client connected from 172.21.0.1 as mosqpub|8945-heretic (c1, k60, u'user1'). +1548239474: Client mosqpub|8945-heretic disconnected. +1548239475: New connection from 172.21.0.1 on port 1883. +1548239475: New client connected from 172.21.0.1 as mosqpub|8946-heretic (c1, k60, u'user1'). +1548239475: Client mosqpub|8946-heretic disconnected. +1548239475: New connection from 172.21.0.1 on port 1883. +1548239475: New client connected from 172.21.0.1 as mosqpub|8947-heretic (c1, k60, u'user1'). +1548239475: Client mosqpub|8947-heretic disconnected. +1548239476: New connection from 172.21.0.1 on port 1883. +1548239476: New client connected from 172.21.0.1 as mosqpub|8948-heretic (c1, k60, u'user1'). +1548239476: Client mosqpub|8948-heretic disconnected. +1548239476: New connection from 172.21.0.1 on port 1883. +1548239476: New client connected from 172.21.0.1 as mosqpub|8949-heretic (c1, k60, u'user1'). +1548239476: Client mosqpub|8949-heretic disconnected. +1548239477: New connection from 172.21.0.1 on port 1883. +1548239477: New client connected from 172.21.0.1 as mosqpub|8950-heretic (c1, k60, u'user1'). +1548239477: Client mosqpub|8950-heretic disconnected. +1548239477: New connection from 172.21.0.1 on port 1883. +1548239477: New client connected from 172.21.0.1 as mosqpub|8951-heretic (c1, k60, u'user1'). +1548239477: Client mosqpub|8951-heretic disconnected. +1548239478: New connection from 172.21.0.1 on port 1883. +1548239478: New client connected from 172.21.0.1 as mosqpub|8952-heretic (c1, k60, u'user1'). +1548239478: Client mosqpub|8952-heretic disconnected. +1548239478: New connection from 172.21.0.1 on port 1883. +1548239478: New client connected from 172.21.0.1 as mosqpub|8953-heretic (c1, k60, u'user1'). +1548239478: Client mosqpub|8953-heretic disconnected. +1548239479: New connection from 172.21.0.1 on port 1883. +1548239479: New client connected from 172.21.0.1 as mosqpub|8954-heretic (c1, k60, u'user1'). +1548239479: Client mosqpub|8954-heretic disconnected. +1548239479: New connection from 172.21.0.1 on port 1883. +1548239479: New client connected from 172.21.0.1 as mosqpub|8955-heretic (c1, k60, u'user1'). +1548239479: Client mosqpub|8955-heretic disconnected. +1548239480: New connection from 172.21.0.1 on port 1883. +1548239480: New client connected from 172.21.0.1 as mosqpub|8956-heretic (c1, k60, u'user1'). +1548239480: Client mosqpub|8956-heretic disconnected. +1548239480: New connection from 172.21.0.1 on port 1883. +1548239480: New client connected from 172.21.0.1 as mosqpub|8957-heretic (c1, k60, u'user1'). +1548239480: Client mosqpub|8957-heretic disconnected. +1548239481: New connection from 172.21.0.1 on port 1883. +1548239481: New client connected from 172.21.0.1 as mosqpub|8959-heretic (c1, k60, u'user1'). +1548239481: Client mosqpub|8959-heretic disconnected. +1548239481: New connection from 172.21.0.1 on port 1883. +1548239481: New client connected from 172.21.0.1 as mosqpub|8960-heretic (c1, k60, u'user1'). +1548239481: Client mosqpub|8960-heretic disconnected. +1548239482: New connection from 172.21.0.1 on port 1883. +1548239482: New client connected from 172.21.0.1 as mosqpub|8964-heretic (c1, k60, u'user1'). +1548239482: Client mosqpub|8964-heretic disconnected. +1548239482: New connection from 172.21.0.1 on port 1883. +1548239482: New client connected from 172.21.0.1 as mosqpub|8965-heretic (c1, k60, u'user1'). +1548239482: Client mosqpub|8965-heretic disconnected. +1548239483: New connection from 172.21.0.1 on port 1883. +1548239483: New client connected from 172.21.0.1 as mosqpub|8966-heretic (c1, k60, u'user1'). +1548239483: Client mosqpub|8966-heretic disconnected. +1548239483: New connection from 172.21.0.1 on port 1883. +1548239483: New client connected from 172.21.0.1 as mosqpub|8967-heretic (c1, k60, u'user1'). +1548239483: Client mosqpub|8967-heretic disconnected. +1548239484: New connection from 172.21.0.1 on port 1883. +1548239484: New client connected from 172.21.0.1 as mosqpub|8968-heretic (c1, k60, u'user1'). +1548239484: Client mosqpub|8968-heretic disconnected. +1548239484: New connection from 172.21.0.1 on port 1883. +1548239484: New client connected from 172.21.0.1 as mosqpub|8969-heretic (c1, k60, u'user1'). +1548239484: Client mosqpub|8969-heretic disconnected. +1548239485: New connection from 172.21.0.1 on port 1883. +1548239485: New client connected from 172.21.0.1 as mosqpub|8970-heretic (c1, k60, u'user1'). +1548239485: Client mosqpub|8970-heretic disconnected. +1548239485: New connection from 172.21.0.1 on port 1883. +1548239485: New client connected from 172.21.0.1 as mosqpub|8971-heretic (c1, k60, u'user1'). +1548239485: Client mosqpub|8971-heretic disconnected. +1548239486: New connection from 172.21.0.1 on port 1883. +1548239486: New client connected from 172.21.0.1 as mosqpub|8972-heretic (c1, k60, u'user1'). +1548239486: Client mosqpub|8972-heretic disconnected. +1548239486: New connection from 172.21.0.1 on port 1883. +1548239486: New client connected from 172.21.0.1 as mosqpub|8973-heretic (c1, k60, u'user1'). +1548239486: Client mosqpub|8973-heretic disconnected. +1548239487: New connection from 172.21.0.1 on port 1883. +1548239487: New client connected from 172.21.0.1 as mosqpub|8974-heretic (c1, k60, u'user1'). +1548239487: Client mosqpub|8974-heretic disconnected. +1548239487: New connection from 172.21.0.1 on port 1883. +1548239487: New client connected from 172.21.0.1 as mosqpub|8975-heretic (c1, k60, u'user1'). +1548239487: Client mosqpub|8975-heretic disconnected. +1548239488: New connection from 172.21.0.1 on port 1883. +1548239488: New client connected from 172.21.0.1 as mosqpub|8976-heretic (c1, k60, u'user1'). +1548239488: Client mosqpub|8976-heretic disconnected. +1548239488: New connection from 172.21.0.1 on port 1883. +1548239488: New client connected from 172.21.0.1 as mosqpub|8977-heretic (c1, k60, u'user1'). +1548239488: Client mosqpub|8977-heretic disconnected. +1548239489: New connection from 172.21.0.1 on port 1883. +1548239489: New client connected from 172.21.0.1 as mosqpub|8978-heretic (c1, k60, u'user1'). +1548239489: Client mosqpub|8978-heretic disconnected. +1548239489: New connection from 172.21.0.1 on port 1883. +1548239489: New client connected from 172.21.0.1 as mosqpub|8979-heretic (c1, k60, u'user1'). +1548239489: Client mosqpub|8979-heretic disconnected. +1548239490: New connection from 172.21.0.1 on port 1883. +1548239490: New client connected from 172.21.0.1 as mosqpub|8980-heretic (c1, k60, u'user1'). +1548239490: Client mosqpub|8980-heretic disconnected. +1548239490: New connection from 172.21.0.1 on port 1883. +1548239490: New client connected from 172.21.0.1 as mosqpub|8981-heretic (c1, k60, u'user1'). +1548239490: Client mosqpub|8981-heretic disconnected. +1548239491: New connection from 172.21.0.1 on port 1883. +1548239491: New client connected from 172.21.0.1 as mosqpub|8982-heretic (c1, k60, u'user1'). +1548239491: Client mosqpub|8982-heretic disconnected. +1548239491: New connection from 172.21.0.1 on port 1883. +1548239491: New client connected from 172.21.0.1 as mosqpub|8983-heretic (c1, k60, u'user1'). +1548239491: Client mosqpub|8983-heretic disconnected. +1548239492: New connection from 172.21.0.1 on port 1883. +1548239492: New client connected from 172.21.0.1 as mosqpub|8984-heretic (c1, k60, u'user1'). +1548239492: Client mosqpub|8984-heretic disconnected. +1548239492: New connection from 172.21.0.1 on port 1883. +1548239492: New client connected from 172.21.0.1 as mosqpub|8986-heretic (c1, k60, u'user1'). +1548239492: Client mosqpub|8986-heretic disconnected. +1548239493: New connection from 172.21.0.1 on port 1883. +1548239493: New client connected from 172.21.0.1 as mosqpub|8987-heretic (c1, k60, u'user1'). +1548239493: Client mosqpub|8987-heretic disconnected. +1548239493: New connection from 172.21.0.1 on port 1883. +1548239493: New client connected from 172.21.0.1 as mosqpub|8988-heretic (c1, k60, u'user1'). +1548239493: Client mosqpub|8988-heretic disconnected. +1548239494: New connection from 172.21.0.1 on port 1883. +1548239494: New client connected from 172.21.0.1 as mosqpub|8989-heretic (c1, k60, u'user1'). +1548239494: Client mosqpub|8989-heretic disconnected. +1548239494: New connection from 172.21.0.1 on port 1883. +1548239494: New client connected from 172.21.0.1 as mosqpub|8990-heretic (c1, k60, u'user1'). +1548239494: Client mosqpub|8990-heretic disconnected. +1548239495: New connection from 172.21.0.1 on port 1883. +1548239495: New client connected from 172.21.0.1 as mosqpub|8991-heretic (c1, k60, u'user1'). +1548239495: Client mosqpub|8991-heretic disconnected. +1548239495: New connection from 172.21.0.1 on port 1883. +1548239495: New client connected from 172.21.0.1 as mosqpub|8992-heretic (c1, k60, u'user1'). +1548239495: Client mosqpub|8992-heretic disconnected. +1548239496: New connection from 172.21.0.1 on port 1883. +1548239496: New client connected from 172.21.0.1 as mosqpub|8993-heretic (c1, k60, u'user1'). +1548239496: Client mosqpub|8993-heretic disconnected. +1548239496: New connection from 172.21.0.1 on port 1883. +1548239496: New client connected from 172.21.0.1 as mosqpub|8994-heretic (c1, k60, u'user1'). +1548239496: Client mosqpub|8994-heretic disconnected. +1548239497: New connection from 172.21.0.1 on port 1883. +1548239497: New client connected from 172.21.0.1 as mosqpub|8995-heretic (c1, k60, u'user1'). +1548239497: Client mosqpub|8995-heretic disconnected. +1548239497: New connection from 172.21.0.1 on port 1883. +1548239497: New client connected from 172.21.0.1 as mosqpub|8996-heretic (c1, k60, u'user1'). +1548239497: Client mosqpub|8996-heretic disconnected. +1548239498: New connection from 172.21.0.1 on port 1883. +1548239498: New client connected from 172.21.0.1 as mosqpub|8997-heretic (c1, k60, u'user1'). +1548239498: Client mosqpub|8997-heretic disconnected. +1548239499: New connection from 172.21.0.1 on port 1883. +1548239499: New client connected from 172.21.0.1 as mosqpub|8998-heretic (c1, k60, u'user1'). +1548239499: Client mosqpub|8998-heretic disconnected. +1548239499: New connection from 172.21.0.1 on port 1883. +1548239499: New client connected from 172.21.0.1 as mosqpub|8999-heretic (c1, k60, u'user1'). +1548239499: Client mosqpub|8999-heretic disconnected. +1548239500: New connection from 172.21.0.1 on port 1883. +1548239500: New client connected from 172.21.0.1 as mosqpub|9000-heretic (c1, k60, u'user1'). +1548239500: Client mosqpub|9000-heretic disconnected. +1548239500: New connection from 172.21.0.1 on port 1883. +1548239500: New client connected from 172.21.0.1 as mosqpub|9001-heretic (c1, k60, u'user1'). +1548239500: Client mosqpub|9001-heretic disconnected. +1548239501: New connection from 172.21.0.1 on port 1883. +1548239501: New client connected from 172.21.0.1 as mosqpub|9002-heretic (c1, k60, u'user1'). +1548239501: Client mosqpub|9002-heretic disconnected. +1548239501: New connection from 172.21.0.1 on port 1883. +1548239501: New client connected from 172.21.0.1 as mosqpub|9003-heretic (c1, k60, u'user1'). +1548239501: Client mosqpub|9003-heretic disconnected. +1548239502: New connection from 172.21.0.1 on port 1883. +1548239502: New client connected from 172.21.0.1 as mosqpub|9004-heretic (c1, k60, u'user1'). +1548239502: Client mosqpub|9004-heretic disconnected. +1548239502: New connection from 172.21.0.1 on port 1883. +1548239502: New client connected from 172.21.0.1 as mosqpub|9005-heretic (c1, k60, u'user1'). +1548239502: Client mosqpub|9005-heretic disconnected. +1548239503: New connection from 172.21.0.1 on port 1883. +1548239503: New client connected from 172.21.0.1 as mosqpub|9006-heretic (c1, k60, u'user1'). +1548239503: Client mosqpub|9006-heretic disconnected. +1548239503: New connection from 172.21.0.1 on port 1883. +1548239503: New client connected from 172.21.0.1 as mosqpub|9007-heretic (c1, k60, u'user1'). +1548239503: Client mosqpub|9007-heretic disconnected. +1548239504: New connection from 172.21.0.1 on port 1883. +1548239504: New client connected from 172.21.0.1 as mosqpub|9008-heretic (c1, k60, u'user1'). +1548239504: Client mosqpub|9008-heretic disconnected. +1548239504: New connection from 172.21.0.1 on port 1883. +1548239504: New client connected from 172.21.0.1 as mosqpub|9009-heretic (c1, k60, u'user1'). +1548239504: Client mosqpub|9009-heretic disconnected. +1548239505: New connection from 172.21.0.1 on port 1883. +1548239505: New client connected from 172.21.0.1 as mosqpub|9010-heretic (c1, k60, u'user1'). +1548239505: Client mosqpub|9010-heretic disconnected. +1548239505: New connection from 172.21.0.1 on port 1883. +1548239505: New client connected from 172.21.0.1 as mosqpub|9011-heretic (c1, k60, u'user1'). +1548239505: Client mosqpub|9011-heretic disconnected. +1548239506: New connection from 172.21.0.1 on port 1883. +1548239506: New client connected from 172.21.0.1 as mosqpub|9014-heretic (c1, k60, u'user1'). +1548239506: Client mosqpub|9014-heretic disconnected. +1548239506: New connection from 172.21.0.1 on port 1883. +1548239506: New client connected from 172.21.0.1 as mosqpub|9015-heretic (c1, k60, u'user1'). +1548239506: Client mosqpub|9015-heretic disconnected. +1548239507: New connection from 172.21.0.1 on port 1883. +1548239507: New client connected from 172.21.0.1 as mosqpub|9016-heretic (c1, k60, u'user1'). +1548239507: Client mosqpub|9016-heretic disconnected. +1548239507: New connection from 172.21.0.1 on port 1883. +1548239507: New client connected from 172.21.0.1 as mosqpub|9017-heretic (c1, k60, u'user1'). +1548239507: Client mosqpub|9017-heretic disconnected. +1548239508: New connection from 172.21.0.1 on port 1883. +1548239508: New client connected from 172.21.0.1 as mosqpub|9018-heretic (c1, k60, u'user1'). +1548239508: Client mosqpub|9018-heretic disconnected. +1548239508: New connection from 172.21.0.1 on port 1883. +1548239508: New client connected from 172.21.0.1 as mosqpub|9019-heretic (c1, k60, u'user1'). +1548239508: Client mosqpub|9019-heretic disconnected. +1548239509: New connection from 172.21.0.1 on port 1883. +1548239509: New client connected from 172.21.0.1 as mosqpub|9024-heretic (c1, k60, u'user1'). +1548239509: Client mosqpub|9024-heretic disconnected. +1548239509: New connection from 172.21.0.1 on port 1883. +1548239509: New client connected from 172.21.0.1 as mosqpub|9025-heretic (c1, k60, u'user1'). +1548239509: Client mosqpub|9025-heretic disconnected. +1548239510: New connection from 172.21.0.1 on port 1883. +1548239510: New client connected from 172.21.0.1 as mosqpub|9026-heretic (c1, k60, u'user1'). +1548239510: Client mosqpub|9026-heretic disconnected. +1548239510: New connection from 172.21.0.1 on port 1883. +1548239510: New client connected from 172.21.0.1 as mosqpub|9027-heretic (c1, k60, u'user1'). +1548239510: Client mosqpub|9027-heretic disconnected. +1548239511: New connection from 172.21.0.1 on port 1883. +1548239511: New client connected from 172.21.0.1 as mosqpub|9028-heretic (c1, k60, u'user1'). +1548239511: Client mosqpub|9028-heretic disconnected. +1548239511: New connection from 172.21.0.1 on port 1883. +1548239511: New client connected from 172.21.0.1 as mosqpub|9029-heretic (c1, k60, u'user1'). +1548239511: Client mosqpub|9029-heretic disconnected. +1548239512: New connection from 172.21.0.1 on port 1883. +1548239512: New client connected from 172.21.0.1 as mosqpub|9030-heretic (c1, k60, u'user1'). +1548239512: Client mosqpub|9030-heretic disconnected. +1548239512: New connection from 172.21.0.1 on port 1883. +1548239512: New client connected from 172.21.0.1 as mosqpub|9031-heretic (c1, k60, u'user1'). +1548239512: Client mosqpub|9031-heretic disconnected. +1548239513: New connection from 172.21.0.1 on port 1883. +1548239513: New client connected from 172.21.0.1 as mosqpub|9032-heretic (c1, k60, u'user1'). +1548239513: Client mosqpub|9032-heretic disconnected. +1548239513: New connection from 172.21.0.1 on port 1883. +1548239513: New client connected from 172.21.0.1 as mosqpub|9033-heretic (c1, k60, u'user1'). +1548239513: Client mosqpub|9033-heretic disconnected. +1548239514: New connection from 172.21.0.1 on port 1883. +1548239514: New client connected from 172.21.0.1 as mosqpub|9034-heretic (c1, k60, u'user1'). +1548239514: Client mosqpub|9034-heretic disconnected. +1548239514: New connection from 172.21.0.1 on port 1883. +1548239514: New client connected from 172.21.0.1 as mosqpub|9035-heretic (c1, k60, u'user1'). +1548239514: Client mosqpub|9035-heretic disconnected. +1548239515: New connection from 172.21.0.1 on port 1883. +1548239515: New client connected from 172.21.0.1 as mosqpub|9036-heretic (c1, k60, u'user1'). +1548239515: Client mosqpub|9036-heretic disconnected. +1548239515: New connection from 172.21.0.1 on port 1883. +1548239515: New client connected from 172.21.0.1 as mosqpub|9037-heretic (c1, k60, u'user1'). +1548239515: Client mosqpub|9037-heretic disconnected. +1548239516: New connection from 172.21.0.1 on port 1883. +1548239516: New client connected from 172.21.0.1 as mosqpub|9038-heretic (c1, k60, u'user1'). +1548239516: Client mosqpub|9038-heretic disconnected. +1548239516: New connection from 172.21.0.1 on port 1883. +1548239516: New client connected from 172.21.0.1 as mosqpub|9039-heretic (c1, k60, u'user1'). +1548239516: Client mosqpub|9039-heretic disconnected. +1548239517: New connection from 172.21.0.1 on port 1883. +1548239517: New client connected from 172.21.0.1 as mosqpub|9040-heretic (c1, k60, u'user1'). +1548239517: Client mosqpub|9040-heretic disconnected. +1548239517: New connection from 172.21.0.1 on port 1883. +1548239517: New client connected from 172.21.0.1 as mosqpub|9041-heretic (c1, k60, u'user1'). +1548239517: Client mosqpub|9041-heretic disconnected. +1548239518: New connection from 172.21.0.1 on port 1883. +1548239518: New client connected from 172.21.0.1 as mosqpub|9042-heretic (c1, k60, u'user1'). +1548239518: Client mosqpub|9042-heretic disconnected. +1548239518: New connection from 172.21.0.1 on port 1883. +1548239518: New client connected from 172.21.0.1 as mosqpub|9043-heretic (c1, k60, u'user1'). +1548239518: Client mosqpub|9043-heretic disconnected. +1548239519: New connection from 172.21.0.1 on port 1883. +1548239519: New client connected from 172.21.0.1 as mosqpub|9044-heretic (c1, k60, u'user1'). +1548239519: Client mosqpub|9044-heretic disconnected. +1548239519: New connection from 172.21.0.1 on port 1883. +1548239519: New client connected from 172.21.0.1 as mosqpub|9045-heretic (c1, k60, u'user1'). +1548239519: Client mosqpub|9045-heretic disconnected. +1548239520: New connection from 172.21.0.1 on port 1883. +1548239520: New client connected from 172.21.0.1 as mosqpub|9046-heretic (c1, k60, u'user1'). +1548239520: Client mosqpub|9046-heretic disconnected. +1548239520: New connection from 172.21.0.1 on port 1883. +1548239520: New client connected from 172.21.0.1 as mosqpub|9047-heretic (c1, k60, u'user1'). +1548239520: Client mosqpub|9047-heretic disconnected. +1548239521: New connection from 172.21.0.1 on port 1883. +1548239521: New client connected from 172.21.0.1 as mosqpub|9048-heretic (c1, k60, u'user1'). +1548239521: Client mosqpub|9048-heretic disconnected. +1548239521: New connection from 172.21.0.1 on port 1883. +1548239521: New client connected from 172.21.0.1 as mosqpub|9049-heretic (c1, k60, u'user1'). +1548239521: Client mosqpub|9049-heretic disconnected. +1548239522: New connection from 172.21.0.1 on port 1883. +1548239522: New client connected from 172.21.0.1 as mosqpub|9050-heretic (c1, k60, u'user1'). +1548239522: Client mosqpub|9050-heretic disconnected. +1548239522: New connection from 172.21.0.1 on port 1883. +1548239522: New client connected from 172.21.0.1 as mosqpub|9051-heretic (c1, k60, u'user1'). +1548239522: Client mosqpub|9051-heretic disconnected. +1548239523: New connection from 172.21.0.1 on port 1883. +1548239523: New client connected from 172.21.0.1 as mosqpub|9052-heretic (c1, k60, u'user1'). +1548239523: Client mosqpub|9052-heretic disconnected. +1548239523: New connection from 172.21.0.1 on port 1883. +1548239523: New client connected from 172.21.0.1 as mosqpub|9053-heretic (c1, k60, u'user1'). +1548239523: Client mosqpub|9053-heretic disconnected. +1548239524: New connection from 172.21.0.1 on port 1883. +1548239524: New client connected from 172.21.0.1 as mosqpub|9054-heretic (c1, k60, u'user1'). +1548239524: Client mosqpub|9054-heretic disconnected. +1548239524: New connection from 172.21.0.1 on port 1883. +1548239524: New client connected from 172.21.0.1 as mosqpub|9055-heretic (c1, k60, u'user1'). +1548239524: Client mosqpub|9055-heretic disconnected. +1548239525: New connection from 172.21.0.1 on port 1883. +1548239525: New client connected from 172.21.0.1 as mosqpub|9056-heretic (c1, k60, u'user1'). +1548239525: Client mosqpub|9056-heretic disconnected. +1548239525: New connection from 172.21.0.1 on port 1883. +1548239525: New client connected from 172.21.0.1 as mosqpub|9057-heretic (c1, k60, u'user1'). +1548239525: Client mosqpub|9057-heretic disconnected. +1548239526: New connection from 172.21.0.1 on port 1883. +1548239526: New client connected from 172.21.0.1 as mosqpub|9058-heretic (c1, k60, u'user1'). +1548239526: Client mosqpub|9058-heretic disconnected. +1548239526: New connection from 172.21.0.1 on port 1883. +1548239526: New client connected from 172.21.0.1 as mosqpub|9059-heretic (c1, k60, u'user1'). +1548239526: Client mosqpub|9059-heretic disconnected. +1548239527: New connection from 172.21.0.1 on port 1883. +1548239527: New client connected from 172.21.0.1 as mosqpub|9060-heretic (c1, k60, u'user1'). +1548239527: Client mosqpub|9060-heretic disconnected. +1548239527: New connection from 172.21.0.1 on port 1883. +1548239527: New client connected from 172.21.0.1 as mosqpub|9061-heretic (c1, k60, u'user1'). +1548239527: Client mosqpub|9061-heretic disconnected. +1548239528: New connection from 172.21.0.1 on port 1883. +1548239528: New client connected from 172.21.0.1 as mosqpub|9062-heretic (c1, k60, u'user1'). +1548239528: Client mosqpub|9062-heretic disconnected. +1548239528: New connection from 172.21.0.1 on port 1883. +1548239528: New client connected from 172.21.0.1 as mosqpub|9063-heretic (c1, k60, u'user1'). +1548239528: Client mosqpub|9063-heretic disconnected. +1548239529: New connection from 172.21.0.1 on port 1883. +1548239529: New client connected from 172.21.0.1 as mosqpub|9064-heretic (c1, k60, u'user1'). +1548239529: Client mosqpub|9064-heretic disconnected. +1548239529: New connection from 172.21.0.1 on port 1883. +1548239529: New client connected from 172.21.0.1 as mosqpub|9065-heretic (c1, k60, u'user1'). +1548239529: Client mosqpub|9065-heretic disconnected. +1548239530: New connection from 172.21.0.1 on port 1883. +1548239530: New client connected from 172.21.0.1 as mosqpub|9066-heretic (c1, k60, u'user1'). +1548239530: Client mosqpub|9066-heretic disconnected. +1548239530: New connection from 172.21.0.1 on port 1883. +1548239530: New client connected from 172.21.0.1 as mosqpub|9067-heretic (c1, k60, u'user1'). +1548239530: Client mosqpub|9067-heretic disconnected. +1548239531: New connection from 172.21.0.1 on port 1883. +1548239531: New client connected from 172.21.0.1 as mosqpub|9068-heretic (c1, k60, u'user1'). +1548239531: Client mosqpub|9068-heretic disconnected. +1548239531: New connection from 172.21.0.1 on port 1883. +1548239531: New client connected from 172.21.0.1 as mosqpub|9069-heretic (c1, k60, u'user1'). +1548239531: Client mosqpub|9069-heretic disconnected. +1548239532: New connection from 172.21.0.1 on port 1883. +1548239532: New client connected from 172.21.0.1 as mosqpub|9070-heretic (c1, k60, u'user1'). +1548239532: Client mosqpub|9070-heretic disconnected. +1548239532: New connection from 172.21.0.1 on port 1883. +1548239532: New client connected from 172.21.0.1 as mosqpub|9071-heretic (c1, k60, u'user1'). +1548239532: Client mosqpub|9071-heretic disconnected. +1548239533: New connection from 172.21.0.1 on port 1883. +1548239533: New client connected from 172.21.0.1 as mosqpub|9072-heretic (c1, k60, u'user1'). +1548239533: Client mosqpub|9072-heretic disconnected. +1548239533: New connection from 172.21.0.1 on port 1883. +1548239533: New client connected from 172.21.0.1 as mosqpub|9073-heretic (c1, k60, u'user1'). +1548239533: Client mosqpub|9073-heretic disconnected. +1548239534: New connection from 172.21.0.1 on port 1883. +1548239534: New client connected from 172.21.0.1 as mosqpub|9074-heretic (c1, k60, u'user1'). +1548239534: Client mosqpub|9074-heretic disconnected. +1548239534: New connection from 172.21.0.1 on port 1883. +1548239534: New client connected from 172.21.0.1 as mosqpub|9075-heretic (c1, k60, u'user1'). +1548239534: Client mosqpub|9075-heretic disconnected. +1548239535: New connection from 172.21.0.1 on port 1883. +1548239535: New client connected from 172.21.0.1 as mosqpub|9076-heretic (c1, k60, u'user1'). +1548239535: Client mosqpub|9076-heretic disconnected. +1548239535: New connection from 172.21.0.1 on port 1883. +1548239535: New client connected from 172.21.0.1 as mosqpub|9077-heretic (c1, k60, u'user1'). +1548239535: Client mosqpub|9077-heretic disconnected. +1548239536: New connection from 172.21.0.1 on port 1883. +1548239536: New client connected from 172.21.0.1 as mosqpub|9078-heretic (c1, k60, u'user1'). +1548239536: Client mosqpub|9078-heretic disconnected. +1548239537: New connection from 172.21.0.1 on port 1883. +1548239537: New client connected from 172.21.0.1 as mosqpub|9079-heretic (c1, k60, u'user1'). +1548239537: Client mosqpub|9079-heretic disconnected. +1548239537: New connection from 172.21.0.1 on port 1883. +1548239537: New client connected from 172.21.0.1 as mosqpub|9080-heretic (c1, k60, u'user1'). +1548239537: Client mosqpub|9080-heretic disconnected. +1548239538: New connection from 172.21.0.1 on port 1883. +1548239538: New client connected from 172.21.0.1 as mosqpub|9081-heretic (c1, k60, u'user1'). +1548239538: Client mosqpub|9081-heretic disconnected. +1548239538: New connection from 172.21.0.1 on port 1883. +1548239538: New client connected from 172.21.0.1 as mosqpub|9082-heretic (c1, k60, u'user1'). +1548239538: Client mosqpub|9082-heretic disconnected. +1548239539: New connection from 172.21.0.1 on port 1883. +1548239539: New client connected from 172.21.0.1 as mosqpub|9083-heretic (c1, k60, u'user1'). +1548239539: Client mosqpub|9083-heretic disconnected. +1548239539: New connection from 172.21.0.1 on port 1883. +1548239539: New client connected from 172.21.0.1 as mosqpub|9084-heretic (c1, k60, u'user1'). +1548239539: Client mosqpub|9084-heretic disconnected. +1548239540: New connection from 172.21.0.1 on port 1883. +1548239540: New client connected from 172.21.0.1 as mosqpub|9085-heretic (c1, k60, u'user1'). +1548239540: Client mosqpub|9085-heretic disconnected. +1548239540: New connection from 172.21.0.1 on port 1883. +1548239540: New client connected from 172.21.0.1 as mosqpub|9086-heretic (c1, k60, u'user1'). +1548239540: Client mosqpub|9086-heretic disconnected. +1548239541: New connection from 172.21.0.1 on port 1883. +1548239541: New client connected from 172.21.0.1 as mosqpub|9087-heretic (c1, k60, u'user1'). +1548239541: Client mosqpub|9087-heretic disconnected. +1548239541: New connection from 172.21.0.1 on port 1883. +1548239541: New client connected from 172.21.0.1 as mosqpub|9088-heretic (c1, k60, u'user1'). +1548239541: Client mosqpub|9088-heretic disconnected. +1548239542: New connection from 172.21.0.1 on port 1883. +1548239542: New client connected from 172.21.0.1 as mosqpub|9089-heretic (c1, k60, u'user1'). +1548239542: Client mosqpub|9089-heretic disconnected. +1548239542: New connection from 172.21.0.1 on port 1883. +1548239542: New client connected from 172.21.0.1 as mosqpub|9090-heretic (c1, k60, u'user1'). +1548239542: Client mosqpub|9090-heretic disconnected. +1548239543: New connection from 172.21.0.1 on port 1883. +1548239543: New client connected from 172.21.0.1 as mosqpub|9091-heretic (c1, k60, u'user1'). +1548239543: Client mosqpub|9091-heretic disconnected. +1548239543: New connection from 172.21.0.1 on port 1883. +1548239543: New client connected from 172.21.0.1 as mosqpub|9092-heretic (c1, k60, u'user1'). +1548239543: Client mosqpub|9092-heretic disconnected. +1548239544: New connection from 172.21.0.1 on port 1883. +1548239544: New client connected from 172.21.0.1 as mosqpub|9093-heretic (c1, k60, u'user1'). +1548239544: Client mosqpub|9093-heretic disconnected. +1548239544: New connection from 172.21.0.1 on port 1883. +1548239544: New client connected from 172.21.0.1 as mosqpub|9094-heretic (c1, k60, u'user1'). +1548239544: Client mosqpub|9094-heretic disconnected. +1548239545: New connection from 172.21.0.1 on port 1883. +1548239545: New client connected from 172.21.0.1 as mosqpub|9095-heretic (c1, k60, u'user1'). +1548239545: Client mosqpub|9095-heretic disconnected. +1548239545: New connection from 172.21.0.1 on port 1883. +1548239545: New client connected from 172.21.0.1 as mosqpub|9096-heretic (c1, k60, u'user1'). +1548239545: Client mosqpub|9096-heretic disconnected. +1548239546: New connection from 172.21.0.1 on port 1883. +1548239546: New client connected from 172.21.0.1 as mosqpub|9097-heretic (c1, k60, u'user1'). +1548239546: Client mosqpub|9097-heretic disconnected. +1548239546: New connection from 172.21.0.1 on port 1883. +1548239546: New client connected from 172.21.0.1 as mosqpub|9098-heretic (c1, k60, u'user1'). +1548239546: Client mosqpub|9098-heretic disconnected. +1548239547: New connection from 172.21.0.1 on port 1883. +1548239547: New client connected from 172.21.0.1 as mosqpub|9099-heretic (c1, k60, u'user1'). +1548239547: Client mosqpub|9099-heretic disconnected. +1548239547: New connection from 172.21.0.1 on port 1883. +1548239547: New client connected from 172.21.0.1 as mosqpub|9100-heretic (c1, k60, u'user1'). +1548239547: Client mosqpub|9100-heretic disconnected. +1548239548: New connection from 172.21.0.1 on port 1883. +1548239548: New client connected from 172.21.0.1 as mosqpub|9101-heretic (c1, k60, u'user1'). +1548239548: Client mosqpub|9101-heretic disconnected. +1548239548: New connection from 172.21.0.1 on port 1883. +1548239548: New client connected from 172.21.0.1 as mosqpub|9102-heretic (c1, k60, u'user1'). +1548239548: Client mosqpub|9102-heretic disconnected. +1548239549: New connection from 172.21.0.1 on port 1883. +1548239549: New client connected from 172.21.0.1 as mosqpub|9103-heretic (c1, k60, u'user1'). +1548239549: Client mosqpub|9103-heretic disconnected. +1548239549: New connection from 172.21.0.1 on port 1883. +1548239549: New client connected from 172.21.0.1 as mosqpub|9104-heretic (c1, k60, u'user1'). +1548239549: Client mosqpub|9104-heretic disconnected. +1548239550: New connection from 172.21.0.1 on port 1883. +1548239550: New client connected from 172.21.0.1 as mosqpub|9105-heretic (c1, k60, u'user1'). +1548239550: Client mosqpub|9105-heretic disconnected. +1548239550: New connection from 172.21.0.1 on port 1883. +1548239550: New client connected from 172.21.0.1 as mosqpub|9106-heretic (c1, k60, u'user1'). +1548239550: Client mosqpub|9106-heretic disconnected. +1548239551: New connection from 172.21.0.1 on port 1883. +1548239551: New client connected from 172.21.0.1 as mosqpub|9107-heretic (c1, k60, u'user1'). +1548239551: Client mosqpub|9107-heretic disconnected. +1548239551: New connection from 172.21.0.1 on port 1883. +1548239551: New client connected from 172.21.0.1 as mosqpub|9108-heretic (c1, k60, u'user1'). +1548239551: Client mosqpub|9108-heretic disconnected. +1548239552: New connection from 172.21.0.1 on port 1883. +1548239552: New client connected from 172.21.0.1 as mosqpub|9109-heretic (c1, k60, u'user1'). +1548239552: Client mosqpub|9109-heretic disconnected. +1548239552: New connection from 172.21.0.1 on port 1883. +1548239552: New client connected from 172.21.0.1 as mosqpub|9110-heretic (c1, k60, u'user1'). +1548239552: Client mosqpub|9110-heretic disconnected. +1548239553: New connection from 172.21.0.1 on port 1883. +1548239553: New client connected from 172.21.0.1 as mosqpub|9111-heretic (c1, k60, u'user1'). +1548239553: Client mosqpub|9111-heretic disconnected. +1548239553: New connection from 172.21.0.1 on port 1883. +1548239553: New client connected from 172.21.0.1 as mosqpub|9112-heretic (c1, k60, u'user1'). +1548239553: Client mosqpub|9112-heretic disconnected. +1548239554: New connection from 172.21.0.1 on port 1883. +1548239554: New client connected from 172.21.0.1 as mosqpub|9113-heretic (c1, k60, u'user1'). +1548239554: Client mosqpub|9113-heretic disconnected. +1548239554: New connection from 172.21.0.1 on port 1883. +1548239554: New client connected from 172.21.0.1 as mosqpub|9114-heretic (c1, k60, u'user1'). +1548239554: Client mosqpub|9114-heretic disconnected. +1548239555: New connection from 172.21.0.1 on port 1883. +1548239555: New client connected from 172.21.0.1 as mosqpub|9115-heretic (c1, k60, u'user1'). +1548239555: Client mosqpub|9115-heretic disconnected. +1548239555: New connection from 172.21.0.1 on port 1883. +1548239555: New client connected from 172.21.0.1 as mosqpub|9116-heretic (c1, k60, u'user1'). +1548239555: Client mosqpub|9116-heretic disconnected. +1548239556: New connection from 172.21.0.1 on port 1883. +1548239556: New client connected from 172.21.0.1 as mosqpub|9117-heretic (c1, k60, u'user1'). +1548239556: Client mosqpub|9117-heretic disconnected. +1548239556: New connection from 172.21.0.1 on port 1883. +1548239556: New client connected from 172.21.0.1 as mosqpub|9118-heretic (c1, k60, u'user1'). +1548239556: Client mosqpub|9118-heretic disconnected. +1548239557: New connection from 172.21.0.1 on port 1883. +1548239557: New client connected from 172.21.0.1 as mosqpub|9119-heretic (c1, k60, u'user1'). +1548239557: Client mosqpub|9119-heretic disconnected. +1548239557: New connection from 172.21.0.1 on port 1883. +1548239557: New client connected from 172.21.0.1 as mosqpub|9120-heretic (c1, k60, u'user1'). +1548239557: Client mosqpub|9120-heretic disconnected. +1548239558: New connection from 172.21.0.1 on port 1883. +1548239558: New client connected from 172.21.0.1 as mosqpub|9121-heretic (c1, k60, u'user1'). +1548239558: Client mosqpub|9121-heretic disconnected. +1548239558: New connection from 172.21.0.1 on port 1883. +1548239558: New client connected from 172.21.0.1 as mosqpub|9122-heretic (c1, k60, u'user1'). +1548239558: Client mosqpub|9122-heretic disconnected. +1548239559: New connection from 172.21.0.1 on port 1883. +1548239559: New client connected from 172.21.0.1 as mosqpub|9123-heretic (c1, k60, u'user1'). +1548239559: Client mosqpub|9123-heretic disconnected. +1548239559: New connection from 172.21.0.1 on port 1883. +1548239559: New client connected from 172.21.0.1 as mosqpub|9125-heretic (c1, k60, u'user1'). +1548239559: Client mosqpub|9125-heretic disconnected. +1548239560: New connection from 172.21.0.1 on port 1883. +1548239560: New client connected from 172.21.0.1 as mosqpub|9126-heretic (c1, k60, u'user1'). +1548239560: Client mosqpub|9126-heretic disconnected. +1548239560: New connection from 172.21.0.1 on port 1883. +1548239560: New client connected from 172.21.0.1 as mosqpub|9127-heretic (c1, k60, u'user1'). +1548239560: Client mosqpub|9127-heretic disconnected. +1548239561: New connection from 172.21.0.1 on port 1883. +1548239561: New client connected from 172.21.0.1 as mosqpub|9128-heretic (c1, k60, u'user1'). +1548239561: Client mosqpub|9128-heretic disconnected. +1548239561: New connection from 172.21.0.1 on port 1883. +1548239561: New client connected from 172.21.0.1 as mosqpub|9129-heretic (c1, k60, u'user1'). +1548239561: Client mosqpub|9129-heretic disconnected. +1548239562: New connection from 172.21.0.1 on port 1883. +1548239562: New client connected from 172.21.0.1 as mosqpub|9130-heretic (c1, k60, u'user1'). +1548239562: Client mosqpub|9130-heretic disconnected. +1548239562: New connection from 172.21.0.1 on port 1883. +1548239562: New client connected from 172.21.0.1 as mosqpub|9131-heretic (c1, k60, u'user1'). +1548239562: Client mosqpub|9131-heretic disconnected. +1548239563: New connection from 172.21.0.1 on port 1883. +1548239563: New client connected from 172.21.0.1 as mosqpub|9132-heretic (c1, k60, u'user1'). +1548239563: Client mosqpub|9132-heretic disconnected. +1548239563: New connection from 172.21.0.1 on port 1883. +1548239563: New client connected from 172.21.0.1 as mosqpub|9133-heretic (c1, k60, u'user1'). +1548239563: Client mosqpub|9133-heretic disconnected. +1548239564: New connection from 172.21.0.1 on port 1883. +1548239564: New client connected from 172.21.0.1 as mosqpub|9134-heretic (c1, k60, u'user1'). +1548239564: Client mosqpub|9134-heretic disconnected. +1548239564: New connection from 172.21.0.1 on port 1883. +1548239564: New client connected from 172.21.0.1 as mosqpub|9135-heretic (c1, k60, u'user1'). +1548239564: Client mosqpub|9135-heretic disconnected. +1548239565: New connection from 172.21.0.1 on port 1883. +1548239565: New client connected from 172.21.0.1 as mosqpub|9136-heretic (c1, k60, u'user1'). +1548239565: Client mosqpub|9136-heretic disconnected. +1548239565: New connection from 172.21.0.1 on port 1883. +1548239565: New client connected from 172.21.0.1 as mosqpub|9137-heretic (c1, k60, u'user1'). +1548239565: Client mosqpub|9137-heretic disconnected. +1548239566: New connection from 172.21.0.1 on port 1883. +1548239566: New client connected from 172.21.0.1 as mosqpub|9138-heretic (c1, k60, u'user1'). +1548239566: Client mosqpub|9138-heretic disconnected. +1548239566: New connection from 172.21.0.1 on port 1883. +1548239566: New client connected from 172.21.0.1 as mosqpub|9139-heretic (c1, k60, u'user1'). +1548239566: Client mosqpub|9139-heretic disconnected. +1548239567: New connection from 172.21.0.1 on port 1883. +1548239567: New client connected from 172.21.0.1 as mosqpub|9140-heretic (c1, k60, u'user1'). +1548239567: Client mosqpub|9140-heretic disconnected. +1548239567: New connection from 172.21.0.1 on port 1883. +1548239567: New client connected from 172.21.0.1 as mosqpub|9141-heretic (c1, k60, u'user1'). +1548239567: Client mosqpub|9141-heretic disconnected. +1548239568: New connection from 172.21.0.1 on port 1883. +1548239568: New client connected from 172.21.0.1 as mosqpub|9142-heretic (c1, k60, u'user1'). +1548239568: Client mosqpub|9142-heretic disconnected. +1548239568: New connection from 172.21.0.1 on port 1883. +1548239568: New client connected from 172.21.0.1 as mosqpub|9143-heretic (c1, k60, u'user1'). +1548239568: Client mosqpub|9143-heretic disconnected. +1548239569: New connection from 172.21.0.1 on port 1883. +1548239569: New client connected from 172.21.0.1 as mosqpub|9144-heretic (c1, k60, u'user1'). +1548239569: Client mosqpub|9144-heretic disconnected. +1548239569: New connection from 172.21.0.1 on port 1883. +1548239569: New client connected from 172.21.0.1 as mosqpub|9145-heretic (c1, k60, u'user1'). +1548239569: Client mosqpub|9145-heretic disconnected. +1548239570: New connection from 172.21.0.1 on port 1883. +1548239570: New client connected from 172.21.0.1 as mosqpub|9147-heretic (c1, k60, u'user1'). +1548239570: Client mosqpub|9147-heretic disconnected. +1548239570: New connection from 172.21.0.1 on port 1883. +1548239570: New client connected from 172.21.0.1 as mosqpub|9148-heretic (c1, k60, u'user1'). +1548239570: Client mosqpub|9148-heretic disconnected. +1548239571: New connection from 172.21.0.1 on port 1883. +1548239571: New client connected from 172.21.0.1 as mosqpub|9149-heretic (c1, k60, u'user1'). +1548239571: Client mosqpub|9149-heretic disconnected. +1548239571: New connection from 172.21.0.1 on port 1883. +1548239571: New client connected from 172.21.0.1 as mosqpub|9150-heretic (c1, k60, u'user1'). +1548239571: Client mosqpub|9150-heretic disconnected. +1548239572: New connection from 172.21.0.1 on port 1883. +1548239572: New client connected from 172.21.0.1 as mosqpub|9151-heretic (c1, k60, u'user1'). +1548239572: Client mosqpub|9151-heretic disconnected. +1548239572: New connection from 172.21.0.1 on port 1883. +1548239572: New client connected from 172.21.0.1 as mosqpub|9152-heretic (c1, k60, u'user1'). +1548239572: Client mosqpub|9152-heretic disconnected. +1548239573: New connection from 172.21.0.1 on port 1883. +1548239573: New client connected from 172.21.0.1 as mosqpub|9153-heretic (c1, k60, u'user1'). +1548239573: Client mosqpub|9153-heretic disconnected. +1548239573: New connection from 172.21.0.1 on port 1883. +1548239573: New client connected from 172.21.0.1 as mosqpub|9154-heretic (c1, k60, u'user1'). +1548239573: Client mosqpub|9154-heretic disconnected. +1548239574: New connection from 172.21.0.1 on port 1883. +1548239574: New client connected from 172.21.0.1 as mosqpub|9155-heretic (c1, k60, u'user1'). +1548239574: Client mosqpub|9155-heretic disconnected. +1548239574: New connection from 172.21.0.1 on port 1883. +1548239574: New client connected from 172.21.0.1 as mosqpub|9156-heretic (c1, k60, u'user1'). +1548239574: Client mosqpub|9156-heretic disconnected. +1548239575: New connection from 172.21.0.1 on port 1883. +1548239575: New client connected from 172.21.0.1 as mosqpub|9157-heretic (c1, k60, u'user1'). +1548239575: Client mosqpub|9157-heretic disconnected. +1548239576: New connection from 172.21.0.1 on port 1883. +1548239576: New client connected from 172.21.0.1 as mosqpub|9158-heretic (c1, k60, u'user1'). +1548239576: Client mosqpub|9158-heretic disconnected. +1548239576: New connection from 172.21.0.1 on port 1883. +1548239576: New client connected from 172.21.0.1 as mosqpub|9159-heretic (c1, k60, u'user1'). +1548239576: Client mosqpub|9159-heretic disconnected. +1548239577: New connection from 172.21.0.1 on port 1883. +1548239577: New client connected from 172.21.0.1 as mosqpub|9160-heretic (c1, k60, u'user1'). +1548239577: Client mosqpub|9160-heretic disconnected. +1548239577: New connection from 172.21.0.1 on port 1883. +1548239577: New client connected from 172.21.0.1 as mosqpub|9161-heretic (c1, k60, u'user1'). +1548239577: Client mosqpub|9161-heretic disconnected. +1548239578: New connection from 172.21.0.1 on port 1883. +1548239578: New client connected from 172.21.0.1 as mosqpub|9162-heretic (c1, k60, u'user1'). +1548239578: Client mosqpub|9162-heretic disconnected. +1548239578: New connection from 172.21.0.1 on port 1883. +1548239578: New client connected from 172.21.0.1 as mosqpub|9163-heretic (c1, k60, u'user1'). +1548239578: Client mosqpub|9163-heretic disconnected. +1548239579: New connection from 172.21.0.1 on port 1883. +1548239579: New client connected from 172.21.0.1 as mosqpub|9164-heretic (c1, k60, u'user1'). +1548239579: Client mosqpub|9164-heretic disconnected. +1548239579: New connection from 172.21.0.1 on port 1883. +1548239579: New client connected from 172.21.0.1 as mosqpub|9165-heretic (c1, k60, u'user1'). +1548239579: Client mosqpub|9165-heretic disconnected. +1548239580: New connection from 172.21.0.1 on port 1883. +1548239580: New client connected from 172.21.0.1 as mosqpub|9166-heretic (c1, k60, u'user1'). +1548239580: Client mosqpub|9166-heretic disconnected. +1548239580: New connection from 172.21.0.1 on port 1883. +1548239580: New client connected from 172.21.0.1 as mosqpub|9167-heretic (c1, k60, u'user1'). +1548239580: Client mosqpub|9167-heretic disconnected. +1548239581: New connection from 172.21.0.1 on port 1883. +1548239581: New client connected from 172.21.0.1 as mosqpub|9168-heretic (c1, k60, u'user1'). +1548239581: Client mosqpub|9168-heretic disconnected. +1548239581: New connection from 172.21.0.1 on port 1883. +1548239581: New client connected from 172.21.0.1 as mosqpub|9169-heretic (c1, k60, u'user1'). +1548239581: Client mosqpub|9169-heretic disconnected. +1548239582: New connection from 172.21.0.1 on port 1883. +1548239582: New client connected from 172.21.0.1 as mosqpub|9170-heretic (c1, k60, u'user1'). +1548239582: Client mosqpub|9170-heretic disconnected. +1548239582: New connection from 172.21.0.1 on port 1883. +1548239582: New client connected from 172.21.0.1 as mosqpub|9171-heretic (c1, k60, u'user1'). +1548239582: Client mosqpub|9171-heretic disconnected. +1548239583: New connection from 172.21.0.1 on port 1883. +1548239583: New client connected from 172.21.0.1 as mosqpub|9172-heretic (c1, k60, u'user1'). +1548239583: Client mosqpub|9172-heretic disconnected. +1548239583: New connection from 172.21.0.1 on port 1883. +1548239583: New client connected from 172.21.0.1 as mosqpub|9173-heretic (c1, k60, u'user1'). +1548239583: Client mosqpub|9173-heretic disconnected. +1548239584: New connection from 172.21.0.1 on port 1883. +1548239584: New client connected from 172.21.0.1 as mosqpub|9174-heretic (c1, k60, u'user1'). +1548239584: Client mosqpub|9174-heretic disconnected. +1548239584: New connection from 172.21.0.1 on port 1883. +1548239584: New client connected from 172.21.0.1 as mosqpub|9175-heretic (c1, k60, u'user1'). +1548239584: Client mosqpub|9175-heretic disconnected. +1548239585: New connection from 172.21.0.1 on port 1883. +1548239585: New client connected from 172.21.0.1 as mosqpub|9176-heretic (c1, k60, u'user1'). +1548239585: Client mosqpub|9176-heretic disconnected. +1548239585: New connection from 172.21.0.1 on port 1883. +1548239585: New client connected from 172.21.0.1 as mosqpub|9177-heretic (c1, k60, u'user1'). +1548239585: Client mosqpub|9177-heretic disconnected. +1548239586: New connection from 172.21.0.1 on port 1883. +1548239586: New client connected from 172.21.0.1 as mosqpub|9178-heretic (c1, k60, u'user1'). +1548239586: Client mosqpub|9178-heretic disconnected. +1548239586: New connection from 172.21.0.1 on port 1883. +1548239586: New client connected from 172.21.0.1 as mosqpub|9179-heretic (c1, k60, u'user1'). +1548239586: Client mosqpub|9179-heretic disconnected. +1548239587: New connection from 172.21.0.1 on port 1883. +1548239587: New client connected from 172.21.0.1 as mosqpub|9180-heretic (c1, k60, u'user1'). +1548239587: Client mosqpub|9180-heretic disconnected. +1548239587: New connection from 172.21.0.1 on port 1883. +1548239587: New client connected from 172.21.0.1 as mosqpub|9181-heretic (c1, k60, u'user1'). +1548239587: Client mosqpub|9181-heretic disconnected. +1548239588: New connection from 172.21.0.1 on port 1883. +1548239588: New client connected from 172.21.0.1 as mosqpub|9182-heretic (c1, k60, u'user1'). +1548239588: Client mosqpub|9182-heretic disconnected. +1548239588: New connection from 172.21.0.1 on port 1883. +1548239588: New client connected from 172.21.0.1 as mosqpub|9183-heretic (c1, k60, u'user1'). +1548239588: Client mosqpub|9183-heretic disconnected. +1548239589: New connection from 172.21.0.1 on port 1883. +1548239589: New client connected from 172.21.0.1 as mosqpub|9184-heretic (c1, k60, u'user1'). +1548239589: Client mosqpub|9184-heretic disconnected. +1548239589: New connection from 172.21.0.1 on port 1883. +1548239589: New client connected from 172.21.0.1 as mosqpub|9185-heretic (c1, k60, u'user1'). +1548239589: Client mosqpub|9185-heretic disconnected. +1548239590: New connection from 172.21.0.1 on port 1883. +1548239590: New client connected from 172.21.0.1 as mosqpub|9186-heretic (c1, k60, u'user1'). +1548239590: Client mosqpub|9186-heretic disconnected. +1548239590: New connection from 172.21.0.1 on port 1883. +1548239590: New client connected from 172.21.0.1 as mosqpub|9187-heretic (c1, k60, u'user1'). +1548239590: Client mosqpub|9187-heretic disconnected. +1548239591: New connection from 172.21.0.1 on port 1883. +1548239591: New client connected from 172.21.0.1 as mosqpub|9188-heretic (c1, k60, u'user1'). +1548239591: Client mosqpub|9188-heretic disconnected. +1548239591: New connection from 172.21.0.1 on port 1883. +1548239591: New client connected from 172.21.0.1 as mosqpub|9189-heretic (c1, k60, u'user1'). +1548239591: Client mosqpub|9189-heretic disconnected. +1548239592: New connection from 172.21.0.1 on port 1883. +1548239592: New client connected from 172.21.0.1 as mosqpub|9190-heretic (c1, k60, u'user1'). +1548239592: Client mosqpub|9190-heretic disconnected. +1548239592: New connection from 172.21.0.1 on port 1883. +1548239592: New client connected from 172.21.0.1 as mosqpub|9191-heretic (c1, k60, u'user1'). +1548239592: Client mosqpub|9191-heretic disconnected. +1548239593: New connection from 172.21.0.1 on port 1883. +1548239593: New client connected from 172.21.0.1 as mosqpub|9192-heretic (c1, k60, u'user1'). +1548239593: Client mosqpub|9192-heretic disconnected. +1548239593: New connection from 172.21.0.1 on port 1883. +1548239593: New client connected from 172.21.0.1 as mosqpub|9193-heretic (c1, k60, u'user1'). +1548239593: Client mosqpub|9193-heretic disconnected. +1548239594: New connection from 172.21.0.1 on port 1883. +1548239594: New client connected from 172.21.0.1 as mosqpub|9194-heretic (c1, k60, u'user1'). +1548239594: Client mosqpub|9194-heretic disconnected. +1548239594: New connection from 172.21.0.1 on port 1883. +1548239594: New client connected from 172.21.0.1 as mosqpub|9195-heretic (c1, k60, u'user1'). +1548239594: Client mosqpub|9195-heretic disconnected. +1548239595: New connection from 172.21.0.1 on port 1883. +1548239595: New client connected from 172.21.0.1 as mosqpub|9196-heretic (c1, k60, u'user1'). +1548239595: Client mosqpub|9196-heretic disconnected. +1548239595: New connection from 172.21.0.1 on port 1883. +1548239595: New client connected from 172.21.0.1 as mosqpub|9197-heretic (c1, k60, u'user1'). +1548239595: Client mosqpub|9197-heretic disconnected. +1548239596: New connection from 172.21.0.1 on port 1883. +1548239596: New client connected from 172.21.0.1 as mosqpub|9198-heretic (c1, k60, u'user1'). +1548239596: Client mosqpub|9198-heretic disconnected. +1548239596: New connection from 172.21.0.1 on port 1883. +1548239596: New client connected from 172.21.0.1 as mosqpub|9199-heretic (c1, k60, u'user1'). +1548239596: Client mosqpub|9199-heretic disconnected. +1548239597: New connection from 172.21.0.1 on port 1883. +1548239597: New client connected from 172.21.0.1 as mosqpub|9200-heretic (c1, k60, u'user1'). +1548239597: Client mosqpub|9200-heretic disconnected. +1548239597: New connection from 172.21.0.1 on port 1883. +1548239597: New client connected from 172.21.0.1 as mosqpub|9201-heretic (c1, k60, u'user1'). +1548239597: Client mosqpub|9201-heretic disconnected. +1548239598: New connection from 172.21.0.1 on port 1883. +1548239598: New client connected from 172.21.0.1 as mosqpub|9202-heretic (c1, k60, u'user1'). +1548239598: Client mosqpub|9202-heretic disconnected. +1548239598: New connection from 172.21.0.1 on port 1883. +1548239598: New client connected from 172.21.0.1 as mosqpub|9203-heretic (c1, k60, u'user1'). +1548239598: Client mosqpub|9203-heretic disconnected. +1548239599: New connection from 172.21.0.1 on port 1883. +1548239599: New client connected from 172.21.0.1 as mosqpub|9204-heretic (c1, k60, u'user1'). +1548239599: Client mosqpub|9204-heretic disconnected. +1548239599: New connection from 172.21.0.1 on port 1883. +1548239599: New client connected from 172.21.0.1 as mosqpub|9205-heretic (c1, k60, u'user1'). +1548239599: Client mosqpub|9205-heretic disconnected. +1548239600: New connection from 172.21.0.1 on port 1883. +1548239600: New client connected from 172.21.0.1 as mosqpub|9206-heretic (c1, k60, u'user1'). +1548239600: Client mosqpub|9206-heretic disconnected. +1548239600: New connection from 172.21.0.1 on port 1883. +1548239600: New client connected from 172.21.0.1 as mosqpub|9207-heretic (c1, k60, u'user1'). +1548239600: Client mosqpub|9207-heretic disconnected. +1548239601: New connection from 172.21.0.1 on port 1883. +1548239601: New client connected from 172.21.0.1 as mosqpub|9208-heretic (c1, k60, u'user1'). +1548239601: Client mosqpub|9208-heretic disconnected. +1548239601: New connection from 172.21.0.1 on port 1883. +1548239601: New client connected from 172.21.0.1 as mosqpub|9209-heretic (c1, k60, u'user1'). +1548239601: Client mosqpub|9209-heretic disconnected. +1548239602: New connection from 172.21.0.1 on port 1883. +1548239602: New client connected from 172.21.0.1 as mosqpub|9210-heretic (c1, k60, u'user1'). +1548239602: Client mosqpub|9210-heretic disconnected. +1548239602: New connection from 172.21.0.1 on port 1883. +1548239602: New client connected from 172.21.0.1 as mosqpub|9211-heretic (c1, k60, u'user1'). +1548239602: Client mosqpub|9211-heretic disconnected. +1548239603: New connection from 172.21.0.1 on port 1883. +1548239603: New client connected from 172.21.0.1 as mosqpub|9212-heretic (c1, k60, u'user1'). +1548239603: Client mosqpub|9212-heretic disconnected. +1548239603: New connection from 172.21.0.1 on port 1883. +1548239603: New client connected from 172.21.0.1 as mosqpub|9213-heretic (c1, k60, u'user1'). +1548239603: Client mosqpub|9213-heretic disconnected. +1548239604: New connection from 172.21.0.1 on port 1883. +1548239604: New client connected from 172.21.0.1 as mosqpub|9214-heretic (c1, k60, u'user1'). +1548239604: Client mosqpub|9214-heretic disconnected. +1548239604: Client MqttClient-ba6b072e10014accb226503 disconnected. +1548239604: New connection from 172.21.0.1 on port 1883. +1548239604: New client connected from 172.21.0.1 as mosqpub|9215-heretic (c1, k60, u'user1'). +1548239604: Client mosqpub|9215-heretic disconnected. +1548239605: New connection from 172.21.0.1 on port 1883. +1548239605: New client connected from 172.21.0.1 as mosqpub|9216-heretic (c1, k60, u'user1'). +1548239605: Client mosqpub|9216-heretic disconnected. +1548239605: New connection from 172.21.0.1 on port 1883. +1548239605: New client connected from 172.21.0.1 as mosqpub|9217-heretic (c1, k60, u'user1'). +1548239605: Client mosqpub|9217-heretic disconnected. +1548239606: New connection from 172.21.0.1 on port 1883. +1548239606: New client connected from 172.21.0.1 as mosqpub|9242-heretic (c1, k60, u'user1'). +1548239606: Client mosqpub|9242-heretic disconnected. +1548239606: New connection from 172.21.0.1 on port 1883. +1548239606: New client connected from 172.21.0.1 as mosqpub|9243-heretic (c1, k60, u'user1'). +1548239606: Client mosqpub|9243-heretic disconnected. +1548239607: New connection from 172.21.0.1 on port 1883. +1548239607: New client connected from 172.21.0.1 as mosqpub|9244-heretic (c1, k60, u'user1'). +1548239607: Client mosqpub|9244-heretic disconnected. +1548239607: New connection from 172.21.0.1 on port 1883. +1548239607: New client connected from 172.21.0.1 as mosqpub|9245-heretic (c1, k60, u'user1'). +1548239607: Client mosqpub|9245-heretic disconnected. +1548239608: New connection from 172.21.0.1 on port 1883. +1548239608: New client connected from 172.21.0.1 as mosqpub|9246-heretic (c1, k60, u'user1'). +1548239608: Client mosqpub|9246-heretic disconnected. +1548239608: New connection from 172.21.0.1 on port 1883. +1548239608: New client connected from 172.21.0.1 as mosqpub|9247-heretic (c1, k60, u'user1'). +1548239608: Client mosqpub|9247-heretic disconnected. +1548239609: New connection from 172.21.0.1 on port 1883. +1548239609: New client connected from 172.21.0.1 as mosqpub|9248-heretic (c1, k60, u'user1'). +1548239609: Client mosqpub|9248-heretic disconnected. +1548239609: New connection from 172.21.0.1 on port 1883. +1548239609: New client connected from 172.21.0.1 as mosqpub|9249-heretic (c1, k60, u'user1'). +1548239609: Client mosqpub|9249-heretic disconnected. +1548239610: New connection from 172.21.0.1 on port 1883. +1548239610: New client connected from 172.21.0.1 as mosqpub|9250-heretic (c1, k60, u'user1'). +1548239610: Client mosqpub|9250-heretic disconnected. +1548239610: New connection from 172.21.0.1 on port 1883. +1548239610: New client connected from 172.21.0.1 as mosqpub|9251-heretic (c1, k60, u'user1'). +1548239610: Client mosqpub|9251-heretic disconnected. +1548239611: New connection from 172.21.0.1 on port 1883. +1548239611: New client connected from 172.21.0.1 as mosqpub|9252-heretic (c1, k60, u'user1'). +1548239611: Client mosqpub|9252-heretic disconnected. +1548239611: New connection from 172.21.0.1 on port 1883. +1548239611: New client connected from 172.21.0.1 as mosqpub|9253-heretic (c1, k60, u'user1'). +1548239611: Client mosqpub|9253-heretic disconnected. +1548239612: New connection from 172.21.0.1 on port 1883. +1548239612: New client connected from 172.21.0.1 as mosqpub|9254-heretic (c1, k60, u'user1'). +1548239612: Client mosqpub|9254-heretic disconnected. +1548239612: New connection from 172.21.0.1 on port 1883. +1548239612: New client connected from 172.21.0.1 as mosqpub|9255-heretic (c1, k60, u'user1'). +1548239612: Client mosqpub|9255-heretic disconnected. +1548239613: New connection from 172.21.0.1 on port 1883. +1548239613: New client connected from 172.21.0.1 as mosqpub|9256-heretic (c1, k60, u'user1'). +1548239613: Client mosqpub|9256-heretic disconnected. +1548239613: New connection from 172.21.0.1 on port 1883. +1548239613: New client connected from 172.21.0.1 as mosqpub|9257-heretic (c1, k60, u'user1'). +1548239613: Client mosqpub|9257-heretic disconnected. +1548239614: New connection from 172.21.0.1 on port 1883. +1548239614: New client connected from 172.21.0.1 as mosqpub|9258-heretic (c1, k60, u'user1'). +1548239614: Client mosqpub|9258-heretic disconnected. +1548239615: New connection from 172.21.0.1 on port 1883. +1548239615: New client connected from 172.21.0.1 as mosqpub|9259-heretic (c1, k60, u'user1'). +1548239615: Client mosqpub|9259-heretic disconnected. +1548239615: New connection from 172.21.0.1 on port 1883. +1548239615: New client connected from 172.21.0.1 as mosqpub|9260-heretic (c1, k60, u'user1'). +1548239615: Client mosqpub|9260-heretic disconnected. +1548239616: New connection from 172.21.0.1 on port 1883. +1548239616: New client connected from 172.21.0.1 as mosqpub|9261-heretic (c1, k60, u'user1'). +1548239616: Client mosqpub|9261-heretic disconnected. +1548239616: New connection from 172.21.0.1 on port 1883. +1548239616: New client connected from 172.21.0.1 as mosqpub|9262-heretic (c1, k60, u'user1'). +1548239616: Client mosqpub|9262-heretic disconnected. +1548239617: New connection from 172.21.0.1 on port 1883. +1548239617: New client connected from 172.21.0.1 as mosqpub|9263-heretic (c1, k60, u'user1'). +1548239617: Client mosqpub|9263-heretic disconnected. +1548239617: New connection from 172.21.0.1 on port 1883. +1548239617: New client connected from 172.21.0.1 as mosqpub|9264-heretic (c1, k60, u'user1'). +1548239617: Client mosqpub|9264-heretic disconnected. +1548239618: New connection from 172.21.0.1 on port 1883. +1548239618: New client connected from 172.21.0.1 as mosqpub|9265-heretic (c1, k60, u'user1'). +1548239618: Client mosqpub|9265-heretic disconnected. +1548239618: New connection from 172.21.0.1 on port 1883. +1548239618: New client connected from 172.21.0.1 as mosqpub|9266-heretic (c1, k60, u'user1'). +1548239618: Client mosqpub|9266-heretic disconnected. +1548239619: New connection from 172.21.0.1 on port 1883. +1548239619: New client connected from 172.21.0.1 as mosqpub|9267-heretic (c1, k60, u'user1'). +1548239619: Client mosqpub|9267-heretic disconnected. +1548239619: New connection from 172.21.0.1 on port 1883. +1548239619: New client connected from 172.21.0.1 as mosqpub|9268-heretic (c1, k60, u'user1'). +1548239619: Client mosqpub|9268-heretic disconnected. +1548239620: New connection from 172.21.0.1 on port 1883. +1548239620: New client connected from 172.21.0.1 as mosqpub|9269-heretic (c1, k60, u'user1'). +1548239620: Client mosqpub|9269-heretic disconnected. +1548239620: New connection from 172.21.0.1 on port 1883. +1548239620: New client connected from 172.21.0.1 as mosqpub|9270-heretic (c1, k60, u'user1'). +1548239620: Client mosqpub|9270-heretic disconnected. +1548239621: New connection from 172.21.0.1 on port 1883. +1548239621: New client connected from 172.21.0.1 as mosqpub|9271-heretic (c1, k60, u'user1'). +1548239621: Client mosqpub|9271-heretic disconnected. +1548239621: New connection from 172.21.0.1 on port 1883. +1548239621: New client connected from 172.21.0.1 as mosqpub|9272-heretic (c1, k60, u'user1'). +1548239621: Client mosqpub|9272-heretic disconnected. +1548239622: New connection from 172.21.0.1 on port 1883. +1548239622: New client connected from 172.21.0.1 as mosqpub|9273-heretic (c1, k60, u'user1'). +1548239622: Client mosqpub|9273-heretic disconnected. +1548239622: New connection from 172.21.0.1 on port 1883. +1548239622: New client connected from 172.21.0.1 as mosqpub|9274-heretic (c1, k60, u'user1'). +1548239622: Client mosqpub|9274-heretic disconnected. +1548239623: New connection from 172.21.0.1 on port 1883. +1548239623: New client connected from 172.21.0.1 as mosqpub|9275-heretic (c1, k60, u'user1'). +1548239623: Client mosqpub|9275-heretic disconnected. +1548239623: New connection from 172.21.0.1 on port 1883. +1548239623: New client connected from 172.21.0.1 as mosqpub|9276-heretic (c1, k60, u'user1'). +1548239623: Client mosqpub|9276-heretic disconnected. +1548239624: New connection from 172.21.0.1 on port 1883. +1548239624: New client connected from 172.21.0.1 as mosqpub|9277-heretic (c1, k60, u'user1'). +1548239624: Client mosqpub|9277-heretic disconnected. +1548239624: New connection from 172.21.0.1 on port 1883. +1548239624: New client connected from 172.21.0.1 as mosqpub|9278-heretic (c1, k60, u'user1'). +1548239624: Client mosqpub|9278-heretic disconnected. +1548239625: New connection from 172.21.0.1 on port 1883. +1548239625: New client connected from 172.21.0.1 as mosqpub|9279-heretic (c1, k60, u'user1'). +1548239625: Client mosqpub|9279-heretic disconnected. +1548239625: New connection from 172.21.0.1 on port 1883. +1548239625: New client connected from 172.21.0.1 as mosqpub|9280-heretic (c1, k60, u'user1'). +1548239625: Client mosqpub|9280-heretic disconnected. +1548239626: New connection from 172.21.0.1 on port 1883. +1548239626: New client connected from 172.21.0.1 as mosqpub|9284-heretic (c1, k60, u'user1'). +1548239626: Client mosqpub|9284-heretic disconnected. +1548239626: New connection from 172.21.0.1 on port 1883. +1548239626: New client connected from 172.21.0.1 as mosqpub|9285-heretic (c1, k60, u'user1'). +1548239626: Client mosqpub|9285-heretic disconnected. +1548239627: New connection from 172.21.0.1 on port 1883. +1548239627: New client connected from 172.21.0.1 as mosqpub|9289-heretic (c1, k60, u'user1'). +1548239627: Client mosqpub|9289-heretic disconnected. +1548239627: New connection from 172.21.0.1 on port 1883. +1548239627: New client connected from 172.21.0.1 as mosqpub|9290-heretic (c1, k60, u'user1'). +1548239627: Client mosqpub|9290-heretic disconnected. +1548239628: New connection from 172.21.0.1 on port 1883. +1548239628: New client connected from 172.21.0.1 as mosqpub|9291-heretic (c1, k60, u'user1'). +1548239628: Client mosqpub|9291-heretic disconnected. +1548239628: New connection from 172.21.0.1 on port 1883. +1548239628: New client connected from 172.21.0.1 as mosqpub|9292-heretic (c1, k60, u'user1'). +1548239628: Client mosqpub|9292-heretic disconnected. +1548239629: New connection from 172.21.0.1 on port 1883. +1548239629: New client connected from 172.21.0.1 as mosqpub|9293-heretic (c1, k60, u'user1'). +1548239629: Client mosqpub|9293-heretic disconnected. +1548239629: New connection from 172.21.0.1 on port 1883. +1548239629: New client connected from 172.21.0.1 as mosqpub|9294-heretic (c1, k60, u'user1'). +1548239629: Client mosqpub|9294-heretic disconnected. +1548239630: New connection from 172.21.0.1 on port 1883. +1548239630: New client connected from 172.21.0.1 as mosqpub|9295-heretic (c1, k60, u'user1'). +1548239630: Client mosqpub|9295-heretic disconnected. +1548239630: New connection from 172.21.0.1 on port 1883. +1548239630: New client connected from 172.21.0.1 as mosqpub|9296-heretic (c1, k60, u'user1'). +1548239630: Client mosqpub|9296-heretic disconnected. +1548239631: New connection from 172.21.0.1 on port 1883. +1548239631: New client connected from 172.21.0.1 as mosqpub|9297-heretic (c1, k60, u'user1'). +1548239631: Client mosqpub|9297-heretic disconnected. +1548239631: New connection from 172.21.0.1 on port 1883. +1548239631: New client connected from 172.21.0.1 as mosqpub|9298-heretic (c1, k60, u'user1'). +1548239631: Client mosqpub|9298-heretic disconnected. +1548239632: New connection from 172.21.0.1 on port 1883. +1548239632: New client connected from 172.21.0.1 as mosqpub|9299-heretic (c1, k60, u'user1'). +1548239632: Client mosqpub|9299-heretic disconnected. +1548239632: New connection from 172.21.0.1 on port 1883. +1548239632: New client connected from 172.21.0.1 as mosqpub|9300-heretic (c1, k60, u'user1'). +1548239632: Client mosqpub|9300-heretic disconnected. +1548239633: New connection from 172.21.0.1 on port 1883. +1548239633: New client connected from 172.21.0.1 as mosqpub|9301-heretic (c1, k60, u'user1'). +1548239633: Client mosqpub|9301-heretic disconnected. +1548239633: New connection from 172.21.0.1 on port 1883. +1548239633: New client connected from 172.21.0.1 as mosqpub|9302-heretic (c1, k60, u'user1'). +1548239633: Client mosqpub|9302-heretic disconnected. +1548239634: New connection from 172.21.0.1 on port 1883. +1548239634: New client connected from 172.21.0.1 as mosqpub|9303-heretic (c1, k60, u'user1'). +1548239634: Client mosqpub|9303-heretic disconnected. +1548239634: New connection from 172.21.0.1 on port 1883. +1548239634: New client connected from 172.21.0.1 as mosqpub|9304-heretic (c1, k60, u'user1'). +1548239634: Client mosqpub|9304-heretic disconnected. +1548239635: New connection from 172.21.0.1 on port 1883. +1548239635: New client connected from 172.21.0.1 as mosqpub|9305-heretic (c1, k60, u'user1'). +1548239635: Client mosqpub|9305-heretic disconnected. +1548239635: New connection from 172.21.0.1 on port 1883. +1548239635: New client connected from 172.21.0.1 as mosqpub|9306-heretic (c1, k60, u'user1'). +1548239635: Client mosqpub|9306-heretic disconnected. +1548239636: New connection from 172.21.0.1 on port 1883. +1548239636: New client connected from 172.21.0.1 as mosqpub|9307-heretic (c1, k60, u'user1'). +1548239636: Client mosqpub|9307-heretic disconnected. +1548239636: New connection from 172.21.0.1 on port 1883. +1548239636: New client connected from 172.21.0.1 as mosqpub|9308-heretic (c1, k60, u'user1'). +1548239636: Client mosqpub|9308-heretic disconnected. +1548239637: New connection from 172.21.0.1 on port 1883. +1548239637: New client connected from 172.21.0.1 as mosqpub|9309-heretic (c1, k60, u'user1'). +1548239637: Client mosqpub|9309-heretic disconnected. +1548239637: New connection from 172.21.0.1 on port 1883. +1548239637: New client connected from 172.21.0.1 as mosqpub|9310-heretic (c1, k60, u'user1'). +1548239637: Client mosqpub|9310-heretic disconnected. +1548239638: New connection from 172.21.0.1 on port 1883. +1548239638: New client connected from 172.21.0.1 as mosqpub|9311-heretic (c1, k60, u'user1'). +1548239638: Client mosqpub|9311-heretic disconnected. +1548239638: New connection from 172.21.0.1 on port 1883. +1548239638: New client connected from 172.21.0.1 as mosqpub|9312-heretic (c1, k60, u'user1'). +1548239638: Client mosqpub|9312-heretic disconnected. +1548239639: New connection from 172.21.0.1 on port 1883. +1548239639: New client connected from 172.21.0.1 as mosqpub|9315-heretic (c1, k60, u'user1'). +1548239639: Client mosqpub|9315-heretic disconnected. +1548239639: New connection from 172.21.0.1 on port 1883. +1548239639: New client connected from 172.21.0.1 as mosqpub|9316-heretic (c1, k60, u'user1'). +1548239639: Client mosqpub|9316-heretic disconnected. +1548239640: New connection from 172.21.0.1 on port 1883. +1548239640: New client connected from 172.21.0.1 as mosqpub|9317-heretic (c1, k60, u'user1'). +1548239640: Client mosqpub|9317-heretic disconnected. +1548239640: New connection from 172.21.0.1 on port 1883. +1548239640: New client connected from 172.21.0.1 as mosqpub|9318-heretic (c1, k60, u'user1'). +1548239640: Client mosqpub|9318-heretic disconnected. +1548239641: New connection from 172.21.0.1 on port 1883. +1548239641: New client connected from 172.21.0.1 as mosqpub|9319-heretic (c1, k60, u'user1'). +1548239641: Client mosqpub|9319-heretic disconnected. +1548239641: New connection from 172.21.0.1 on port 1883. +1548239641: New client connected from 172.21.0.1 as mosqpub|9320-heretic (c1, k60, u'user1'). +1548239641: Client mosqpub|9320-heretic disconnected. +1548239642: New connection from 172.21.0.1 on port 1883. +1548239642: New client connected from 172.21.0.1 as mosqpub|9321-heretic (c1, k60, u'user1'). +1548239642: Client mosqpub|9321-heretic disconnected. +1548239642: New connection from 172.21.0.1 on port 1883. +1548239642: New client connected from 172.21.0.1 as mosqpub|9322-heretic (c1, k60, u'user1'). +1548239642: Client mosqpub|9322-heretic disconnected. +1548239643: New connection from 172.21.0.1 on port 1883. +1548239643: New client connected from 172.21.0.1 as mosqpub|9323-heretic (c1, k60, u'user1'). +1548239643: Client mosqpub|9323-heretic disconnected. +1548239643: New connection from 172.21.0.1 on port 1883. +1548239643: New client connected from 172.21.0.1 as mosqpub|9324-heretic (c1, k60, u'user1'). +1548239643: Client mosqpub|9324-heretic disconnected. +1548239644: New connection from 172.21.0.1 on port 1883. +1548239644: New client connected from 172.21.0.1 as mosqpub|9325-heretic (c1, k60, u'user1'). +1548239644: Client mosqpub|9325-heretic disconnected. +1548239644: New connection from 172.21.0.1 on port 1883. +1548239644: New client connected from 172.21.0.1 as mosqpub|9326-heretic (c1, k60, u'user1'). +1548239644: Client mosqpub|9326-heretic disconnected. +1548239645: New connection from 172.21.0.1 on port 1883. +1548239645: New client connected from 172.21.0.1 as mosqpub|9327-heretic (c1, k60, u'user1'). +1548239645: Client mosqpub|9327-heretic disconnected. +1548239645: New connection from 172.21.0.1 on port 1883. +1548239645: New client connected from 172.21.0.1 as mosqpub|9328-heretic (c1, k60, u'user1'). +1548239645: Client mosqpub|9328-heretic disconnected. +1548239646: New connection from 172.21.0.1 on port 1883. +1548239646: New client connected from 172.21.0.1 as mosqpub|9329-heretic (c1, k60, u'user1'). +1548239646: Client mosqpub|9329-heretic disconnected. +1548239646: New connection from 172.21.0.1 on port 1883. +1548239646: New client connected from 172.21.0.1 as mosqpub|9330-heretic (c1, k60, u'user1'). +1548239646: Client mosqpub|9330-heretic disconnected. +1548239647: New connection from 172.21.0.1 on port 1883. +1548239647: New client connected from 172.21.0.1 as mosqpub|9331-heretic (c1, k60, u'user1'). +1548239647: Client mosqpub|9331-heretic disconnected. +1548239647: New connection from 172.21.0.1 on port 1883. +1548239647: New client connected from 172.21.0.1 as mosqpub|9332-heretic (c1, k60, u'user1'). +1548239647: Client mosqpub|9332-heretic disconnected. +1548239648: New connection from 172.21.0.1 on port 1883. +1548239648: New client connected from 172.21.0.1 as mosqpub|9333-heretic (c1, k60, u'user1'). +1548239648: Client mosqpub|9333-heretic disconnected. +1548239648: New connection from 172.21.0.1 on port 1883. +1548239648: New client connected from 172.21.0.1 as mosqpub|9334-heretic (c1, k60, u'user1'). +1548239648: Client mosqpub|9334-heretic disconnected. +1548239649: New connection from 172.21.0.1 on port 1883. +1548239649: New client connected from 172.21.0.1 as mosqpub|9335-heretic (c1, k60, u'user1'). +1548239649: Client mosqpub|9335-heretic disconnected. +1548239649: New connection from 172.21.0.1 on port 1883. +1548239649: New client connected from 172.21.0.1 as mosqpub|9336-heretic (c1, k60, u'user1'). +1548239649: Client mosqpub|9336-heretic disconnected. +1548239650: New connection from 172.21.0.1 on port 1883. +1548239650: New client connected from 172.21.0.1 as mosqpub|9337-heretic (c1, k60, u'user1'). +1548239650: Client mosqpub|9337-heretic disconnected. +1548239650: New connection from 172.21.0.1 on port 1883. +1548239650: New client connected from 172.21.0.1 as mosqpub|9338-heretic (c1, k60, u'user1'). +1548239650: Client mosqpub|9338-heretic disconnected. +1548239651: New connection from 172.21.0.1 on port 1883. +1548239651: New client connected from 172.21.0.1 as mosqpub|9339-heretic (c1, k60, u'user1'). +1548239651: Client mosqpub|9339-heretic disconnected. +1548239651: New connection from 172.21.0.1 on port 1883. +1548239651: New client connected from 172.21.0.1 as mosqpub|9340-heretic (c1, k60, u'user1'). +1548239651: Client mosqpub|9340-heretic disconnected. +1548239652: New connection from 172.21.0.1 on port 1883. +1548239652: New client connected from 172.21.0.1 as mosqpub|9342-heretic (c1, k60, u'user1'). +1548239652: Client mosqpub|9342-heretic disconnected. +1548239652: New connection from 172.21.0.1 on port 1883. +1548239652: New client connected from 172.21.0.1 as mosqpub|9343-heretic (c1, k60, u'user1'). +1548239652: Client mosqpub|9343-heretic disconnected. +1548239653: New connection from 172.21.0.1 on port 1883. +1548239653: New client connected from 172.21.0.1 as mosqpub|9344-heretic (c1, k60, u'user1'). +1548239653: Client mosqpub|9344-heretic disconnected. +1548239653: New connection from 172.21.0.1 on port 1883. +1548239653: New client connected from 172.21.0.1 as mosqpub|9345-heretic (c1, k60, u'user1'). +1548239653: Client mosqpub|9345-heretic disconnected. +1548239654: New connection from 172.21.0.1 on port 1883. +1548239654: New client connected from 172.21.0.1 as mosqpub|9346-heretic (c1, k60, u'user1'). +1548239654: Client mosqpub|9346-heretic disconnected. +1548239655: New connection from 172.21.0.1 on port 1883. +1548239655: New client connected from 172.21.0.1 as mosqpub|9347-heretic (c1, k60, u'user1'). +1548239655: Client mosqpub|9347-heretic disconnected. +1548239655: New connection from 172.21.0.1 on port 1883. +1548239655: New client connected from 172.21.0.1 as mosqpub|9348-heretic (c1, k60, u'user1'). +1548239655: Client mosqpub|9348-heretic disconnected. +1548239656: New connection from 172.21.0.1 on port 1883. +1548239656: New client connected from 172.21.0.1 as mosqpub|9349-heretic (c1, k60, u'user1'). +1548239656: Client mosqpub|9349-heretic disconnected. +1548239656: New connection from 172.21.0.1 on port 1883. +1548239656: New client connected from 172.21.0.1 as mosqpub|9350-heretic (c1, k60, u'user1'). +1548239656: Client mosqpub|9350-heretic disconnected. +1548239657: New connection from 172.21.0.1 on port 1883. +1548239657: New client connected from 172.21.0.1 as mosqpub|9351-heretic (c1, k60, u'user1'). +1548239657: Client mosqpub|9351-heretic disconnected. +1548239657: New connection from 172.21.0.1 on port 1883. +1548239657: New client connected from 172.21.0.1 as mosqpub|9352-heretic (c1, k60, u'user1'). +1548239657: Client mosqpub|9352-heretic disconnected. +1548239658: New connection from 172.21.0.1 on port 1883. +1548239658: New client connected from 172.21.0.1 as mosqpub|9353-heretic (c1, k60, u'user1'). +1548239658: Client mosqpub|9353-heretic disconnected. +1548239658: New connection from 172.21.0.1 on port 1883. +1548239658: New client connected from 172.21.0.1 as mosqpub|9354-heretic (c1, k60, u'user1'). +1548239658: Client mosqpub|9354-heretic disconnected. +1548239659: New connection from 172.21.0.1 on port 1883. +1548239659: New client connected from 172.21.0.1 as mosqpub|9355-heretic (c1, k60, u'user1'). +1548239659: Client mosqpub|9355-heretic disconnected. +1548239659: New connection from 172.21.0.1 on port 1883. +1548239659: New client connected from 172.21.0.1 as mosqpub|9357-heretic (c1, k60, u'user1'). +1548239659: Client mosqpub|9357-heretic disconnected. +1548239660: New connection from 172.21.0.1 on port 1883. +1548239660: New client connected from 172.21.0.1 as mosqpub|9359-heretic (c1, k60, u'user1'). +1548239660: Client mosqpub|9359-heretic disconnected. +1548239660: New connection from 172.21.0.1 on port 1883. +1548239660: New client connected from 172.21.0.1 as mosqpub|9360-heretic (c1, k60, u'user1'). +1548239660: Client mosqpub|9360-heretic disconnected. +1548239661: New connection from 172.21.0.1 on port 1883. +1548239661: New client connected from 172.21.0.1 as mosqpub|9361-heretic (c1, k60, u'user1'). +1548239661: Client mosqpub|9361-heretic disconnected. +1548239661: New connection from 172.21.0.1 on port 1883. +1548239661: New client connected from 172.21.0.1 as mosqpub|9362-heretic (c1, k60, u'user1'). +1548239661: Client mosqpub|9362-heretic disconnected. +1548239662: New connection from 172.21.0.1 on port 1883. +1548239662: New client connected from 172.21.0.1 as mosqpub|9363-heretic (c1, k60, u'user1'). +1548239662: Client mosqpub|9363-heretic disconnected. +1548239662: New connection from 172.21.0.1 on port 1883. +1548239662: New client connected from 172.21.0.1 as mosqpub|9364-heretic (c1, k60, u'user1'). +1548239662: Client mosqpub|9364-heretic disconnected. +1548239663: New connection from 172.21.0.1 on port 1883. +1548239663: New client connected from 172.21.0.1 as mosqpub|9365-heretic (c1, k60, u'user1'). +1548239663: Client mosqpub|9365-heretic disconnected. +1548239663: New connection from 172.21.0.1 on port 1883. +1548239663: New client connected from 172.21.0.1 as mosqpub|9366-heretic (c1, k60, u'user1'). +1548239663: Client mosqpub|9366-heretic disconnected. +1548239664: New connection from 172.21.0.1 on port 1883. +1548239664: New client connected from 172.21.0.1 as mosqpub|9367-heretic (c1, k60, u'user1'). +1548239664: Client mosqpub|9367-heretic disconnected. +1548239664: New connection from 172.21.0.1 on port 1883. +1548239664: New client connected from 172.21.0.1 as mosqpub|9368-heretic (c1, k60, u'user1'). +1548239664: Client mosqpub|9368-heretic disconnected. +1548239665: New connection from 172.21.0.1 on port 1883. +1548239665: New client connected from 172.21.0.1 as mosqpub|9369-heretic (c1, k60, u'user1'). +1548239665: Client mosqpub|9369-heretic disconnected. +1548239665: New connection from 172.21.0.1 on port 1883. +1548239665: New client connected from 172.21.0.1 as mosqpub|9370-heretic (c1, k60, u'user1'). +1548239665: Client mosqpub|9370-heretic disconnected. +1548239666: New connection from 172.21.0.1 on port 1883. +1548239666: New client connected from 172.21.0.1 as mosqpub|9371-heretic (c1, k60, u'user1'). +1548239666: Client mosqpub|9371-heretic disconnected. +1548239666: New connection from 172.21.0.1 on port 1883. +1548239666: New client connected from 172.21.0.1 as mosqpub|9372-heretic (c1, k60, u'user1'). +1548239666: Client mosqpub|9372-heretic disconnected. +1548239667: New connection from 172.21.0.1 on port 1883. +1548239667: New client connected from 172.21.0.1 as mosqpub|9373-heretic (c1, k60, u'user1'). +1548239667: Client mosqpub|9373-heretic disconnected. +1548239667: New connection from 172.21.0.1 on port 1883. +1548239667: New client connected from 172.21.0.1 as mosqpub|9374-heretic (c1, k60, u'user1'). +1548239667: Client mosqpub|9374-heretic disconnected. +1548239668: New connection from 172.21.0.1 on port 1883. +1548239668: New client connected from 172.21.0.1 as mosqpub|9376-heretic (c1, k60, u'user1'). +1548239668: Client mosqpub|9376-heretic disconnected. +1548239668: New connection from 172.21.0.1 on port 1883. +1548239668: New client connected from 172.21.0.1 as mosqpub|9377-heretic (c1, k60, u'user1'). +1548239668: Client mosqpub|9377-heretic disconnected. +1548239669: New connection from 172.21.0.1 on port 1883. +1548239669: New client connected from 172.21.0.1 as mosqpub|9378-heretic (c1, k60, u'user1'). +1548239669: Client mosqpub|9378-heretic disconnected. +1548239669: New connection from 172.21.0.1 on port 1883. +1548239669: New client connected from 172.21.0.1 as mosqpub|9379-heretic (c1, k60, u'user1'). +1548239669: Client mosqpub|9379-heretic disconnected. +1548239670: New connection from 172.21.0.1 on port 1883. +1548239670: New client connected from 172.21.0.1 as mosqpub|9381-heretic (c1, k60, u'user1'). +1548239670: Client mosqpub|9381-heretic disconnected. +1548239670: New connection from 172.21.0.1 on port 1883. +1548239670: New client connected from 172.21.0.1 as mosqpub|9382-heretic (c1, k60, u'user1'). +1548239670: Client mosqpub|9382-heretic disconnected. +1548239671: New connection from 172.21.0.1 on port 1883. +1548239671: New client connected from 172.21.0.1 as mosqpub|9383-heretic (c1, k60, u'user1'). +1548239671: Client mosqpub|9383-heretic disconnected. +1548239671: New connection from 172.21.0.1 on port 1883. +1548239671: New client connected from 172.21.0.1 as mosqpub|9384-heretic (c1, k60, u'user1'). +1548239671: Client mosqpub|9384-heretic disconnected. +1548239672: New connection from 172.21.0.1 on port 1883. +1548239672: New client connected from 172.21.0.1 as mosqpub|9386-heretic (c1, k60, u'user1'). +1548239672: Client mosqpub|9386-heretic disconnected. +1548239672: New connection from 172.21.0.1 on port 1883. +1548239672: New client connected from 172.21.0.1 as mosqpub|9390-heretic (c1, k60, u'user1'). +1548239672: Client mosqpub|9390-heretic disconnected. +1548239673: New connection from 172.21.0.1 on port 1883. +1548239673: New client connected from 172.21.0.1 as mosqpub|9391-heretic (c1, k60, u'user1'). +1548239673: Client mosqpub|9391-heretic disconnected. +1548239673: New connection from 172.21.0.1 on port 1883. +1548239673: New client connected from 172.21.0.1 as mosqpub|9392-heretic (c1, k60, u'user1'). +1548239673: Client mosqpub|9392-heretic disconnected. +1548239674: New connection from 172.21.0.1 on port 1883. +1548239674: New client connected from 172.21.0.1 as mosqpub|9393-heretic (c1, k60, u'user1'). +1548239674: Client mosqpub|9393-heretic disconnected. +1548239674: New connection from 172.21.0.1 on port 1883. +1548239674: New client connected from 172.21.0.1 as mosqpub|9395-heretic (c1, k60, u'user1'). +1548239674: Client mosqpub|9395-heretic disconnected. +1548239675: New connection from 172.21.0.1 on port 1883. +1548239675: New client connected from 172.21.0.1 as mosqpub|9396-heretic (c1, k60, u'user1'). +1548239675: Client mosqpub|9396-heretic disconnected. +1548239675: New connection from 172.21.0.1 on port 1883. +1548239675: New client connected from 172.21.0.1 as mosqpub|9397-heretic (c1, k60, u'user1'). +1548239675: Client mosqpub|9397-heretic disconnected. +1548239676: New connection from 172.21.0.1 on port 1883. +1548239676: New client connected from 172.21.0.1 as mosqpub|9398-heretic (c1, k60, u'user1'). +1548239676: Client mosqpub|9398-heretic disconnected. +1548239676: New connection from 172.21.0.1 on port 1883. +1548239676: New client connected from 172.21.0.1 as mosqpub|9399-heretic (c1, k60, u'user1'). +1548239676: Client mosqpub|9399-heretic disconnected. +1548239677: New connection from 172.21.0.1 on port 1883. +1548239677: New client connected from 172.21.0.1 as mosqpub|9400-heretic (c1, k60, u'user1'). +1548239677: Client mosqpub|9400-heretic disconnected. +1548239677: New connection from 172.21.0.1 on port 1883. +1548239677: New client connected from 172.21.0.1 as mosqpub|9401-heretic (c1, k60, u'user1'). +1548239677: Client mosqpub|9401-heretic disconnected. +1548239678: New connection from 172.21.0.1 on port 1883. +1548239678: New client connected from 172.21.0.1 as mosqpub|9402-heretic (c1, k60, u'user1'). +1548239678: Client mosqpub|9402-heretic disconnected. +1548239678: New connection from 172.21.0.1 on port 1883. +1548239678: New client connected from 172.21.0.1 as mosqpub|9403-heretic (c1, k60, u'user1'). +1548239678: Client mosqpub|9403-heretic disconnected. +1548239679: New connection from 172.21.0.1 on port 1883. +1548239679: New client connected from 172.21.0.1 as mosqpub|9404-heretic (c1, k60, u'user1'). +1548239679: Client mosqpub|9404-heretic disconnected. +1548239679: New connection from 172.21.0.1 on port 1883. +1548239679: New client connected from 172.21.0.1 as mosqpub|9405-heretic (c1, k60, u'user1'). +1548239679: Client mosqpub|9405-heretic disconnected. +1548239680: New connection from 172.21.0.1 on port 1883. +1548239680: New client connected from 172.21.0.1 as mosqpub|9406-heretic (c1, k60, u'user1'). +1548239680: Client mosqpub|9406-heretic disconnected. +1548239680: New connection from 172.21.0.1 on port 1883. +1548239680: New client connected from 172.21.0.1 as mosqpub|9407-heretic (c1, k60, u'user1'). +1548239680: Client mosqpub|9407-heretic disconnected. +1548239681: New connection from 172.21.0.1 on port 1883. +1548239681: New client connected from 172.21.0.1 as mosqpub|9408-heretic (c1, k60, u'user1'). +1548239681: Client mosqpub|9408-heretic disconnected. +1548239681: New connection from 172.21.0.1 on port 1883. +1548239681: New client connected from 172.21.0.1 as mosqpub|9409-heretic (c1, k60, u'user1'). +1548239681: Client mosqpub|9409-heretic disconnected. +1548239682: New connection from 172.21.0.1 on port 1883. +1548239682: New client connected from 172.21.0.1 as mosqpub|9410-heretic (c1, k60, u'user1'). +1548239682: Client mosqpub|9410-heretic disconnected. +1548239682: New connection from 172.21.0.1 on port 1883. +1548239682: New client connected from 172.21.0.1 as mosqpub|9411-heretic (c1, k60, u'user1'). +1548239682: Client mosqpub|9411-heretic disconnected. +1548239683: New connection from 172.21.0.1 on port 1883. +1548239683: New client connected from 172.21.0.1 as mosqpub|9412-heretic (c1, k60, u'user1'). +1548239683: Client mosqpub|9412-heretic disconnected. +1548239683: New connection from 172.21.0.1 on port 1883. +1548239683: New client connected from 172.21.0.1 as mosqpub|9413-heretic (c1, k60, u'user1'). +1548239683: Client mosqpub|9413-heretic disconnected. +1548239684: New connection from 172.21.0.1 on port 1883. +1548239684: New client connected from 172.21.0.1 as mosqpub|9414-heretic (c1, k60, u'user1'). +1548239684: Client mosqpub|9414-heretic disconnected. +1548239684: New connection from 172.21.0.1 on port 1883. +1548239684: New client connected from 172.21.0.1 as mosqpub|9415-heretic (c1, k60, u'user1'). +1548239684: Client mosqpub|9415-heretic disconnected. +1548239685: New connection from 172.21.0.1 on port 1883. +1548239685: New client connected from 172.21.0.1 as mosqpub|9416-heretic (c1, k60, u'user1'). +1548239685: Client mosqpub|9416-heretic disconnected. +1548239685: New connection from 172.21.0.1 on port 1883. +1548239685: New client connected from 172.21.0.1 as mosqpub|9417-heretic (c1, k60, u'user1'). +1548239685: Client mosqpub|9417-heretic disconnected. +1548239686: New connection from 172.21.0.1 on port 1883. +1548239686: New client connected from 172.21.0.1 as mosqpub|9418-heretic (c1, k60, u'user1'). +1548239686: Client mosqpub|9418-heretic disconnected. +1548239686: New connection from 172.21.0.1 on port 1883. +1548239686: New client connected from 172.21.0.1 as mosqpub|9419-heretic (c1, k60, u'user1'). +1548239686: Client mosqpub|9419-heretic disconnected. +1548239687: New connection from 172.21.0.1 on port 1883. +1548239687: New client connected from 172.21.0.1 as mosqpub|9420-heretic (c1, k60, u'user1'). +1548239687: Client mosqpub|9420-heretic disconnected. +1548239687: New connection from 172.21.0.1 on port 1883. +1548239687: New client connected from 172.21.0.1 as mosqpub|9421-heretic (c1, k60, u'user1'). +1548239687: Client mosqpub|9421-heretic disconnected. +1548239688: New connection from 172.21.0.1 on port 1883. +1548239688: New client connected from 172.21.0.1 as mosqpub|9422-heretic (c1, k60, u'user1'). +1548239688: Client mosqpub|9422-heretic disconnected. +1548239688: New connection from 172.21.0.1 on port 1883. +1548239688: New client connected from 172.21.0.1 as mosqpub|9423-heretic (c1, k60, u'user1'). +1548239688: Client mosqpub|9423-heretic disconnected. +1548239689: New connection from 172.21.0.1 on port 1883. +1548239689: New client connected from 172.21.0.1 as mosqpub|9425-heretic (c1, k60, u'user1'). +1548239689: Client mosqpub|9425-heretic disconnected. +1548239689: New connection from 172.21.0.1 on port 1883. +1548239689: New client connected from 172.21.0.1 as mosqpub|9426-heretic (c1, k60, u'user1'). +1548239689: Client mosqpub|9426-heretic disconnected. +1548239690: New connection from 172.21.0.1 on port 1883. +1548239690: New client connected from 172.21.0.1 as mosqpub|9427-heretic (c1, k60, u'user1'). +1548239690: Client mosqpub|9427-heretic disconnected. +1548239690: New connection from 172.21.0.1 on port 1883. +1548239690: New client connected from 172.21.0.1 as mosqpub|9428-heretic (c1, k60, u'user1'). +1548239690: Client mosqpub|9428-heretic disconnected. +1548239691: New connection from 172.21.0.1 on port 1883. +1548239691: New client connected from 172.21.0.1 as mosqpub|9429-heretic (c1, k60, u'user1'). +1548239691: Client mosqpub|9429-heretic disconnected. +1548239691: New connection from 172.21.0.1 on port 1883. +1548239691: New client connected from 172.21.0.1 as mosqpub|9430-heretic (c1, k60, u'user1'). +1548239691: Client mosqpub|9430-heretic disconnected. +1548239692: New connection from 172.21.0.1 on port 1883. +1548239692: New client connected from 172.21.0.1 as mosqpub|9431-heretic (c1, k60, u'user1'). +1548239692: Client mosqpub|9431-heretic disconnected. +1548239692: New connection from 172.21.0.1 on port 1883. +1548239692: New client connected from 172.21.0.1 as mosqpub|9432-heretic (c1, k60, u'user1'). +1548239693: Client mosqpub|9432-heretic disconnected. +1548239693: New connection from 172.21.0.1 on port 1883. +1548239693: New client connected from 172.21.0.1 as mosqpub|9433-heretic (c1, k60, u'user1'). +1548239693: Client mosqpub|9433-heretic disconnected. +1548239694: New connection from 172.21.0.1 on port 1883. +1548239694: New client connected from 172.21.0.1 as mosqpub|9434-heretic (c1, k60, u'user1'). +1548239694: Client mosqpub|9434-heretic disconnected. +1548239694: New connection from 172.21.0.1 on port 1883. +1548239694: New client connected from 172.21.0.1 as mosqpub|9435-heretic (c1, k60, u'user1'). +1548239694: Client mosqpub|9435-heretic disconnected. +1548239695: New connection from 172.21.0.1 on port 1883. +1548239695: New client connected from 172.21.0.1 as mosqpub|9436-heretic (c1, k60, u'user1'). +1548239695: Client mosqpub|9436-heretic disconnected. +1548239695: New connection from 172.21.0.1 on port 1883. +1548239695: New client connected from 172.21.0.1 as mosqpub|9437-heretic (c1, k60, u'user1'). +1548239695: Client mosqpub|9437-heretic disconnected. +1548239696: New connection from 172.21.0.1 on port 1883. +1548239696: New client connected from 172.21.0.1 as mosqpub|9438-heretic (c1, k60, u'user1'). +1548239696: Client mosqpub|9438-heretic disconnected. +1548239696: New connection from 172.21.0.1 on port 1883. +1548239696: New client connected from 172.21.0.1 as mosqpub|9439-heretic (c1, k60, u'user1'). +1548239696: Client mosqpub|9439-heretic disconnected. +1548239697: New connection from 172.21.0.1 on port 1883. +1548239697: New client connected from 172.21.0.1 as mosqpub|9440-heretic (c1, k60, u'user1'). +1548239697: Client mosqpub|9440-heretic disconnected. +1548239697: New connection from 172.21.0.1 on port 1883. +1548239697: New client connected from 172.21.0.1 as mosqpub|9441-heretic (c1, k60, u'user1'). +1548239697: Client mosqpub|9441-heretic disconnected. +1548239698: New connection from 172.21.0.1 on port 1883. +1548239698: New client connected from 172.21.0.1 as mosqpub|9442-heretic (c1, k60, u'user1'). +1548239698: Client mosqpub|9442-heretic disconnected. +1548239698: New connection from 172.21.0.1 on port 1883. +1548239698: New client connected from 172.21.0.1 as mosqpub|9443-heretic (c1, k60, u'user1'). +1548239698: Client mosqpub|9443-heretic disconnected. +1548239699: New connection from 172.21.0.1 on port 1883. +1548239699: New client connected from 172.21.0.1 as mosqpub|9444-heretic (c1, k60, u'user1'). +1548239699: Client mosqpub|9444-heretic disconnected. +1548239699: New connection from 172.21.0.1 on port 1883. +1548239699: New client connected from 172.21.0.1 as mosqpub|9445-heretic (c1, k60, u'user1'). +1548239699: Client mosqpub|9445-heretic disconnected. +1548239700: New connection from 172.21.0.1 on port 1883. +1548239700: New client connected from 172.21.0.1 as mosqpub|9446-heretic (c1, k60, u'user1'). +1548239700: Client mosqpub|9446-heretic disconnected. +1548239700: New connection from 172.21.0.1 on port 1883. +1548239700: New client connected from 172.21.0.1 as mosqpub|9447-heretic (c1, k60, u'user1'). +1548239700: Client mosqpub|9447-heretic disconnected. +1548239701: New connection from 172.21.0.1 on port 1883. +1548239701: New client connected from 172.21.0.1 as mosqpub|9448-heretic (c1, k60, u'user1'). +1548239701: Client mosqpub|9448-heretic disconnected. +1548239701: New connection from 172.21.0.1 on port 1883. +1548239701: New client connected from 172.21.0.1 as mosqpub|9449-heretic (c1, k60, u'user1'). +1548239701: Client mosqpub|9449-heretic disconnected. +1548239702: New connection from 172.21.0.1 on port 1883. +1548239702: New client connected from 172.21.0.1 as mosqpub|9450-heretic (c1, k60, u'user1'). +1548239702: Client mosqpub|9450-heretic disconnected. +1548239702: New connection from 172.21.0.1 on port 1883. +1548239702: New client connected from 172.21.0.1 as mosqpub|9451-heretic (c1, k60, u'user1'). +1548239702: Client mosqpub|9451-heretic disconnected. +1548239703: New connection from 172.21.0.1 on port 1883. +1548239703: New client connected from 172.21.0.1 as mosqpub|9452-heretic (c1, k60, u'user1'). +1548239703: Client mosqpub|9452-heretic disconnected. +1548239703: New connection from 172.21.0.1 on port 1883. +1548239703: New client connected from 172.21.0.1 as mosqpub|9453-heretic (c1, k60, u'user1'). +1548239703: Client mosqpub|9453-heretic disconnected. +1548239704: New connection from 172.21.0.1 on port 1883. +1548239704: New client connected from 172.21.0.1 as mosqpub|9454-heretic (c1, k60, u'user1'). +1548239704: Client mosqpub|9454-heretic disconnected. +1548239704: New connection from 172.21.0.1 on port 1883. +1548239704: New client connected from 172.21.0.1 as mosqpub|9455-heretic (c1, k60, u'user1'). +1548239704: Client mosqpub|9455-heretic disconnected. +1548239705: New connection from 172.21.0.1 on port 1883. +1548239705: New client connected from 172.21.0.1 as mosqpub|9456-heretic (c1, k60, u'user1'). +1548239705: Client mosqpub|9456-heretic disconnected. +1548239705: New connection from 172.21.0.1 on port 1883. +1548239705: New client connected from 172.21.0.1 as mosqpub|9457-heretic (c1, k60, u'user1'). +1548239705: Client mosqpub|9457-heretic disconnected. +1548239706: New connection from 172.21.0.1 on port 1883. +1548239706: New client connected from 172.21.0.1 as mosqpub|9458-heretic (c1, k60, u'user1'). +1548239706: Client mosqpub|9458-heretic disconnected. +1548239706: New connection from 172.21.0.1 on port 1883. +1548239706: New client connected from 172.21.0.1 as mosqpub|9459-heretic (c1, k60, u'user1'). +1548239706: Client mosqpub|9459-heretic disconnected. +1548239707: New connection from 172.21.0.1 on port 1883. +1548239707: New client connected from 172.21.0.1 as mosqpub|9460-heretic (c1, k60, u'user1'). +1548239707: Client mosqpub|9460-heretic disconnected. +1548239707: New connection from 172.21.0.1 on port 1883. +1548239707: New client connected from 172.21.0.1 as mosqpub|9461-heretic (c1, k60, u'user1'). +1548239707: Client mosqpub|9461-heretic disconnected. +1548239708: New connection from 172.21.0.1 on port 1883. +1548239708: New client connected from 172.21.0.1 as mosqpub|9462-heretic (c1, k60, u'user1'). +1548239708: Client mosqpub|9462-heretic disconnected. +1548239708: New connection from 172.21.0.1 on port 1883. +1548239708: New client connected from 172.21.0.1 as mosqpub|9463-heretic (c1, k60, u'user1'). +1548239708: Client mosqpub|9463-heretic disconnected. +1548239709: New connection from 172.21.0.1 on port 1883. +1548239709: New client connected from 172.21.0.1 as mosqpub|9464-heretic (c1, k60, u'user1'). +1548239709: Client mosqpub|9464-heretic disconnected. +1548239709: New connection from 172.21.0.1 on port 1883. +1548239709: New client connected from 172.21.0.1 as mosqpub|9465-heretic (c1, k60, u'user1'). +1548239709: Client mosqpub|9465-heretic disconnected. +1548239710: New connection from 172.21.0.1 on port 1883. +1548239710: New client connected from 172.21.0.1 as mosqpub|9466-heretic (c1, k60, u'user1'). +1548239710: Client mosqpub|9466-heretic disconnected. +1548239710: New connection from 172.21.0.1 on port 1883. +1548239710: New client connected from 172.21.0.1 as mosqpub|9467-heretic (c1, k60, u'user1'). +1548239710: Client mosqpub|9467-heretic disconnected. +1548239711: New connection from 172.21.0.1 on port 1883. +1548239711: New client connected from 172.21.0.1 as mosqpub|9468-heretic (c1, k60, u'user1'). +1548239711: Client mosqpub|9468-heretic disconnected. +1548239711: New connection from 172.21.0.1 on port 1883. +1548239711: New client connected from 172.21.0.1 as mosqpub|9469-heretic (c1, k60, u'user1'). +1548239711: Client mosqpub|9469-heretic disconnected. +1548239712: New connection from 172.21.0.1 on port 1883. +1548239712: New client connected from 172.21.0.1 as mosqpub|9470-heretic (c1, k60, u'user1'). +1548239712: Client mosqpub|9470-heretic disconnected. +1548239712: New connection from 172.21.0.1 on port 1883. +1548239712: New client connected from 172.21.0.1 as mosqpub|9471-heretic (c1, k60, u'user1'). +1548239712: Client mosqpub|9471-heretic disconnected. +1548239713: New connection from 172.21.0.1 on port 1883. +1548239713: New client connected from 172.21.0.1 as mosqpub|9472-heretic (c1, k60, u'user1'). +1548239713: Client mosqpub|9472-heretic disconnected. +1548239713: New connection from 172.21.0.1 on port 1883. +1548239713: New client connected from 172.21.0.1 as mosqpub|9473-heretic (c1, k60, u'user1'). +1548239713: Client mosqpub|9473-heretic disconnected. +1548239714: New connection from 172.21.0.1 on port 1883. +1548239714: New client connected from 172.21.0.1 as mosqpub|9474-heretic (c1, k60, u'user1'). +1548239714: Client mosqpub|9474-heretic disconnected. +1548239714: New connection from 172.21.0.1 on port 1883. +1548239714: New client connected from 172.21.0.1 as mosqpub|9475-heretic (c1, k60, u'user1'). +1548239714: Client mosqpub|9475-heretic disconnected. +1548239715: New connection from 172.21.0.1 on port 1883. +1548239715: New client connected from 172.21.0.1 as mosqpub|9476-heretic (c1, k60, u'user1'). +1548239715: Client mosqpub|9476-heretic disconnected. +1548239715: New connection from 172.21.0.1 on port 1883. +1548239715: New client connected from 172.21.0.1 as mosqpub|9478-heretic (c1, k60, u'user1'). +1548239715: Client mosqpub|9478-heretic disconnected. +1548239716: New connection from 172.21.0.1 on port 1883. +1548239716: New client connected from 172.21.0.1 as mosqpub|9480-heretic (c1, k60, u'user1'). +1548239716: Client mosqpub|9480-heretic disconnected. +1548239716: New connection from 172.21.0.1 on port 1883. +1548239716: New client connected from 172.21.0.1 as mosqpub|9481-heretic (c1, k60, u'user1'). +1548239716: Client mosqpub|9481-heretic disconnected. +1548239717: New connection from 172.21.0.1 on port 1883. +1548239717: New client connected from 172.21.0.1 as mosqpub|9482-heretic (c1, k60, u'user1'). +1548239717: Client mosqpub|9482-heretic disconnected. +1548239717: New connection from 172.21.0.1 on port 1883. +1548239717: New client connected from 172.21.0.1 as mosqpub|9483-heretic (c1, k60, u'user1'). +1548239717: Client mosqpub|9483-heretic disconnected. +1548239718: New connection from 172.21.0.1 on port 1883. +1548239718: New client connected from 172.21.0.1 as mosqpub|9484-heretic (c1, k60, u'user1'). +1548239718: Client mosqpub|9484-heretic disconnected. +1548239718: New connection from 172.21.0.1 on port 1883. +1548239718: New client connected from 172.21.0.1 as mosqpub|9485-heretic (c1, k60, u'user1'). +1548239718: Client mosqpub|9485-heretic disconnected. +1548239719: New connection from 172.21.0.1 on port 1883. +1548239719: New client connected from 172.21.0.1 as mosqpub|9486-heretic (c1, k60, u'user1'). +1548239719: Client mosqpub|9486-heretic disconnected. +1548239719: New connection from 172.21.0.1 on port 1883. +1548239719: New client connected from 172.21.0.1 as mosqpub|9490-heretic (c1, k60, u'user1'). +1548239719: Client mosqpub|9490-heretic disconnected. +1548239720: New connection from 172.21.0.1 on port 1883. +1548239720: New client connected from 172.21.0.1 as mosqpub|9491-heretic (c1, k60, u'user1'). +1548239720: Client mosqpub|9491-heretic disconnected. +1548239720: New connection from 172.21.0.1 on port 1883. +1548239720: New client connected from 172.21.0.1 as mosqpub|9492-heretic (c1, k60, u'user1'). +1548239720: Client mosqpub|9492-heretic disconnected. +1548239721: New connection from 172.21.0.1 on port 1883. +1548239721: New client connected from 172.21.0.1 as mosqpub|9493-heretic (c1, k60, u'user1'). +1548239721: Client mosqpub|9493-heretic disconnected. +1548239721: New connection from 172.21.0.1 on port 1883. +1548239721: New client connected from 172.21.0.1 as mosqpub|9494-heretic (c1, k60, u'user1'). +1548239721: Client mosqpub|9494-heretic disconnected. +1548239722: New connection from 172.21.0.1 on port 1883. +1548239722: New client connected from 172.21.0.1 as mosqpub|9495-heretic (c1, k60, u'user1'). +1548239722: Client mosqpub|9495-heretic disconnected. +1548239722: New connection from 172.21.0.1 on port 1883. +1548239722: New client connected from 172.21.0.1 as mosqpub|9496-heretic (c1, k60, u'user1'). +1548239722: Client mosqpub|9496-heretic disconnected. +1548239723: New connection from 172.21.0.1 on port 1883. +1548239723: New client connected from 172.21.0.1 as mosqpub|9497-heretic (c1, k60, u'user1'). +1548239723: Client mosqpub|9497-heretic disconnected. +1548239723: New connection from 172.21.0.1 on port 1883. +1548239723: New client connected from 172.21.0.1 as mosqpub|9498-heretic (c1, k60, u'user1'). +1548239723: Client mosqpub|9498-heretic disconnected. +1548239724: New connection from 172.21.0.1 on port 1883. +1548239724: New client connected from 172.21.0.1 as mosqpub|9499-heretic (c1, k60, u'user1'). +1548239724: Client mosqpub|9499-heretic disconnected. +1548239724: New connection from 172.21.0.1 on port 1883. +1548239724: New client connected from 172.21.0.1 as mosqpub|9500-heretic (c1, k60, u'user1'). +1548239724: Client mosqpub|9500-heretic disconnected. +1548239725: New connection from 172.21.0.1 on port 1883. +1548239725: New client connected from 172.21.0.1 as mosqpub|9501-heretic (c1, k60, u'user1'). +1548239725: Client mosqpub|9501-heretic disconnected. +1548239725: New connection from 172.21.0.1 on port 1883. +1548239725: New client connected from 172.21.0.1 as mosqpub|9502-heretic (c1, k60, u'user1'). +1548239725: Client mosqpub|9502-heretic disconnected. +1548239726: New connection from 172.21.0.1 on port 1883. +1548239726: New client connected from 172.21.0.1 as mosqpub|9503-heretic (c1, k60, u'user1'). +1548239726: Client mosqpub|9503-heretic disconnected. +1548239726: New connection from 172.21.0.1 on port 1883. +1548239726: New client connected from 172.21.0.1 as mosqpub|9504-heretic (c1, k60, u'user1'). +1548239726: Client mosqpub|9504-heretic disconnected. +1548239727: New connection from 172.21.0.1 on port 1883. +1548239727: New client connected from 172.21.0.1 as mosqpub|9505-heretic (c1, k60, u'user1'). +1548239727: Client mosqpub|9505-heretic disconnected. +1548239727: New connection from 172.21.0.1 on port 1883. +1548239727: New client connected from 172.21.0.1 as mosqpub|9506-heretic (c1, k60, u'user1'). +1548239727: Client mosqpub|9506-heretic disconnected. +1548239728: New connection from 172.21.0.1 on port 1883. +1548239728: New client connected from 172.21.0.1 as mosqpub|9507-heretic (c1, k60, u'user1'). +1548239728: Client mosqpub|9507-heretic disconnected. +1548239728: New connection from 172.21.0.1 on port 1883. +1548239728: New client connected from 172.21.0.1 as mosqpub|9508-heretic (c1, k60, u'user1'). +1548239728: Client mosqpub|9508-heretic disconnected. +1548239729: New connection from 172.21.0.1 on port 1883. +1548239729: New client connected from 172.21.0.1 as mosqpub|9509-heretic (c1, k60, u'user1'). +1548239729: Client mosqpub|9509-heretic disconnected. +1548239730: New connection from 172.21.0.1 on port 1883. +1548239730: New client connected from 172.21.0.1 as mosqpub|9510-heretic (c1, k60, u'user1'). +1548239730: Client mosqpub|9510-heretic disconnected. +1548239730: New connection from 172.21.0.1 on port 1883. +1548239730: New client connected from 172.21.0.1 as mosqpub|9511-heretic (c1, k60, u'user1'). +1548239730: Client mosqpub|9511-heretic disconnected. +1548239731: New connection from 172.21.0.1 on port 1883. +1548239731: New client connected from 172.21.0.1 as mosqpub|9512-heretic (c1, k60, u'user1'). +1548239731: Client mosqpub|9512-heretic disconnected. +1548239731: New connection from 172.21.0.1 on port 1883. +1548239731: New client connected from 172.21.0.1 as mosqpub|9513-heretic (c1, k60, u'user1'). +1548239731: Client mosqpub|9513-heretic disconnected. +1548239732: New connection from 172.21.0.1 on port 1883. +1548239732: New client connected from 172.21.0.1 as mosqpub|9514-heretic (c1, k60, u'user1'). +1548239732: Client mosqpub|9514-heretic disconnected. +1548239732: New connection from 172.21.0.1 on port 1883. +1548239732: New client connected from 172.21.0.1 as mosqpub|9515-heretic (c1, k60, u'user1'). +1548239732: Client mosqpub|9515-heretic disconnected. +1548239733: New connection from 172.21.0.1 on port 1883. +1548239733: New client connected from 172.21.0.1 as mosqpub|9516-heretic (c1, k60, u'user1'). +1548239733: Client mosqpub|9516-heretic disconnected. +1548239733: New connection from 172.21.0.1 on port 1883. +1548239733: New client connected from 172.21.0.1 as mosqpub|9517-heretic (c1, k60, u'user1'). +1548239733: Client mosqpub|9517-heretic disconnected. +1548239734: New connection from 172.21.0.1 on port 1883. +1548239734: New client connected from 172.21.0.1 as mosqpub|9518-heretic (c1, k60, u'user1'). +1548239734: Client mosqpub|9518-heretic disconnected. +1548239734: New connection from 172.21.0.1 on port 1883. +1548239734: New client connected from 172.21.0.1 as mosqpub|9519-heretic (c1, k60, u'user1'). +1548239734: Client mosqpub|9519-heretic disconnected. +1548239735: New connection from 172.21.0.1 on port 1883. +1548239735: New client connected from 172.21.0.1 as mosqpub|9521-heretic (c1, k60, u'user1'). +1548239735: Client mosqpub|9521-heretic disconnected. +1548239735: New connection from 172.21.0.1 on port 1883. +1548239735: New client connected from 172.21.0.1 as mosqpub|9522-heretic (c1, k60, u'user1'). +1548239735: Client mosqpub|9522-heretic disconnected. +1548239736: New connection from 172.21.0.1 on port 1883. +1548239736: New client connected from 172.21.0.1 as mosqpub|9523-heretic (c1, k60, u'user1'). +1548239736: Client mosqpub|9523-heretic disconnected. +1548239736: New connection from 172.21.0.1 on port 1883. +1548239736: New client connected from 172.21.0.1 as mosqpub|9524-heretic (c1, k60, u'user1'). +1548239736: Client mosqpub|9524-heretic disconnected. +1548239737: New connection from 172.21.0.1 on port 1883. +1548239737: New client connected from 172.21.0.1 as mosqpub|9525-heretic (c1, k60, u'user1'). +1548239737: Client mosqpub|9525-heretic disconnected. +1548239737: New connection from 172.21.0.1 on port 1883. +1548239737: New client connected from 172.21.0.1 as mosqpub|9526-heretic (c1, k60, u'user1'). +1548239737: Client mosqpub|9526-heretic disconnected. +1548239738: New connection from 172.21.0.1 on port 1883. +1548239738: New client connected from 172.21.0.1 as mosqpub|9527-heretic (c1, k60, u'user1'). +1548239738: Client mosqpub|9527-heretic disconnected. +1548239738: New connection from 172.21.0.1 on port 1883. +1548239738: New client connected from 172.21.0.1 as mosqpub|9528-heretic (c1, k60, u'user1'). +1548239738: Client mosqpub|9528-heretic disconnected. +1548239739: New connection from 172.21.0.1 on port 1883. +1548239739: New client connected from 172.21.0.1 as mosqpub|9529-heretic (c1, k60, u'user1'). +1548239739: Client mosqpub|9529-heretic disconnected. +1548239739: New connection from 172.21.0.1 on port 1883. +1548239739: New client connected from 172.21.0.1 as mosqpub|9530-heretic (c1, k60, u'user1'). +1548239739: Client mosqpub|9530-heretic disconnected. +1548239740: New connection from 172.21.0.1 on port 1883. +1548239740: New client connected from 172.21.0.1 as mosqpub|9531-heretic (c1, k60, u'user1'). +1548239740: Client mosqpub|9531-heretic disconnected. +1548239740: New connection from 172.21.0.1 on port 1883. +1548239740: New client connected from 172.21.0.1 as mosqpub|9532-heretic (c1, k60, u'user1'). +1548239740: Client mosqpub|9532-heretic disconnected. +1548239741: New connection from 172.21.0.1 on port 1883. +1548239741: New client connected from 172.21.0.1 as mosqpub|9533-heretic (c1, k60, u'user1'). +1548239741: Client mosqpub|9533-heretic disconnected. +1548239741: New connection from 172.21.0.1 on port 1883. +1548239741: New client connected from 172.21.0.1 as mosqpub|9534-heretic (c1, k60, u'user1'). +1548239741: Client mosqpub|9534-heretic disconnected. +1548239742: New connection from 172.21.0.1 on port 1883. +1548239742: New client connected from 172.21.0.1 as mosqpub|9535-heretic (c1, k60, u'user1'). +1548239742: Client mosqpub|9535-heretic disconnected. +1548239742: New connection from 172.21.0.1 on port 1883. +1548239742: New client connected from 172.21.0.1 as mosqpub|9536-heretic (c1, k60, u'user1'). +1548239742: Client mosqpub|9536-heretic disconnected. +1548239743: New connection from 172.21.0.1 on port 1883. +1548239743: New client connected from 172.21.0.1 as mosqpub|9537-heretic (c1, k60, u'user1'). +1548239743: Client mosqpub|9537-heretic disconnected. +1548239743: New connection from 172.21.0.1 on port 1883. +1548239743: New client connected from 172.21.0.1 as mosqpub|9538-heretic (c1, k60, u'user1'). +1548239743: Client mosqpub|9538-heretic disconnected. +1548239744: New connection from 172.21.0.1 on port 1883. +1548239744: New client connected from 172.21.0.1 as mosqpub|9539-heretic (c1, k60, u'user1'). +1548239744: Client mosqpub|9539-heretic disconnected. +1548239744: New connection from 172.21.0.1 on port 1883. +1548239744: New client connected from 172.21.0.1 as mosqpub|9540-heretic (c1, k60, u'user1'). +1548239744: Client mosqpub|9540-heretic disconnected. +1548239745: New connection from 172.21.0.1 on port 1883. +1548239745: New client connected from 172.21.0.1 as mosqpub|9541-heretic (c1, k60, u'user1'). +1548239745: Client mosqpub|9541-heretic disconnected. +1548239745: New connection from 172.21.0.1 on port 1883. +1548239745: New client connected from 172.21.0.1 as mosqpub|9542-heretic (c1, k60, u'user1'). +1548239745: Client mosqpub|9542-heretic disconnected. +1548239746: New connection from 172.21.0.1 on port 1883. +1548239746: New client connected from 172.21.0.1 as mosqpub|9543-heretic (c1, k60, u'user1'). +1548239746: Client mosqpub|9543-heretic disconnected. +1548239746: New connection from 172.21.0.1 on port 1883. +1548239746: New client connected from 172.21.0.1 as mosqpub|9544-heretic (c1, k60, u'user1'). +1548239746: Client mosqpub|9544-heretic disconnected. +1548239747: New connection from 172.21.0.1 on port 1883. +1548239747: New client connected from 172.21.0.1 as mosqpub|9545-heretic (c1, k60, u'user1'). +1548239747: Client mosqpub|9545-heretic disconnected. +1548239747: New connection from 172.21.0.1 on port 1883. +1548239747: New client connected from 172.21.0.1 as mosqpub|9546-heretic (c1, k60, u'user1'). +1548239747: Client mosqpub|9546-heretic disconnected. +1548239748: New connection from 172.21.0.1 on port 1883. +1548239748: New client connected from 172.21.0.1 as mosqpub|9550-heretic (c1, k60, u'user1'). +1548239748: Client mosqpub|9550-heretic disconnected. +1548239748: New connection from 172.21.0.1 on port 1883. +1548239748: New client connected from 172.21.0.1 as mosqpub|9551-heretic (c1, k60, u'user1'). +1548239748: Client mosqpub|9551-heretic disconnected. +1548239749: New connection from 172.21.0.1 on port 1883. +1548239749: New client connected from 172.21.0.1 as mosqpub|9552-heretic (c1, k60, u'user1'). +1548239749: Client mosqpub|9552-heretic disconnected. +1548239749: New connection from 172.21.0.1 on port 1883. +1548239749: New client connected from 172.21.0.1 as mosqpub|9553-heretic (c1, k60, u'user1'). +1548239749: Client mosqpub|9553-heretic disconnected. +1548239750: New connection from 172.21.0.1 on port 1883. +1548239750: New client connected from 172.21.0.1 as mosqpub|9554-heretic (c1, k60, u'user1'). +1548239750: Client mosqpub|9554-heretic disconnected. +1548239750: New connection from 172.21.0.1 on port 1883. +1548239750: New client connected from 172.21.0.1 as mosqpub|9555-heretic (c1, k60, u'user1'). +1548239750: Client mosqpub|9555-heretic disconnected. +1548239751: New connection from 172.21.0.1 on port 1883. +1548239751: New client connected from 172.21.0.1 as mosqpub|9556-heretic (c1, k60, u'user1'). +1548239751: Client mosqpub|9556-heretic disconnected. +1548239751: New connection from 172.21.0.1 on port 1883. +1548239751: New client connected from 172.21.0.1 as mosqpub|9557-heretic (c1, k60, u'user1'). +1548239751: Client mosqpub|9557-heretic disconnected. +1548239752: New connection from 172.21.0.1 on port 1883. +1548239752: New client connected from 172.21.0.1 as mosqpub|9558-heretic (c1, k60, u'user1'). +1548239752: Client mosqpub|9558-heretic disconnected. +1548239752: New connection from 172.21.0.1 on port 1883. +1548239752: New client connected from 172.21.0.1 as mosqpub|9559-heretic (c1, k60, u'user1'). +1548239752: Client mosqpub|9559-heretic disconnected. +1548239753: New connection from 172.21.0.1 on port 1883. +1548239753: New client connected from 172.21.0.1 as mosqpub|9560-heretic (c1, k60, u'user1'). +1548239753: Client mosqpub|9560-heretic disconnected. +1548239753: New connection from 172.21.0.1 on port 1883. +1548239753: New client connected from 172.21.0.1 as mosqpub|9562-heretic (c1, k60, u'user1'). +1548239753: Client mosqpub|9562-heretic disconnected. +1548239754: New connection from 172.21.0.1 on port 1883. +1548239754: New client connected from 172.21.0.1 as mosqpub|9564-heretic (c1, k60, u'user1'). +1548239754: Client mosqpub|9564-heretic disconnected. +1548239754: New connection from 172.21.0.1 on port 1883. +1548239754: New client connected from 172.21.0.1 as mosqpub|9565-heretic (c1, k60, u'user1'). +1548239754: Client mosqpub|9565-heretic disconnected. +1548239755: New connection from 172.21.0.1 on port 1883. +1548239755: New client connected from 172.21.0.1 as mosqpub|9566-heretic (c1, k60, u'user1'). +1548239755: Client mosqpub|9566-heretic disconnected. +1548239755: New connection from 172.21.0.1 on port 1883. +1548239755: New client connected from 172.21.0.1 as mosqpub|9567-heretic (c1, k60, u'user1'). +1548239755: Client mosqpub|9567-heretic disconnected. +1548239756: New connection from 172.21.0.1 on port 1883. +1548239756: New client connected from 172.21.0.1 as mosqpub|9568-heretic (c1, k60, u'user1'). +1548239756: Client mosqpub|9568-heretic disconnected. +1548239756: New connection from 172.21.0.1 on port 1883. +1548239756: New client connected from 172.21.0.1 as mosqpub|9569-heretic (c1, k60, u'user1'). +1548239756: Client mosqpub|9569-heretic disconnected. +1548239757: New connection from 172.21.0.1 on port 1883. +1548239757: New client connected from 172.21.0.1 as mosqpub|9570-heretic (c1, k60, u'user1'). +1548239757: Client mosqpub|9570-heretic disconnected. +1548239757: New connection from 172.21.0.1 on port 1883. +1548239757: New client connected from 172.21.0.1 as mosqpub|9571-heretic (c1, k60, u'user1'). +1548239757: Client mosqpub|9571-heretic disconnected. +1548239758: New connection from 172.21.0.1 on port 1883. +1548239758: New client connected from 172.21.0.1 as mosqpub|9572-heretic (c1, k60, u'user1'). +1548239758: Client mosqpub|9572-heretic disconnected. +1548239758: New connection from 172.21.0.1 on port 1883. +1548239758: New client connected from 172.21.0.1 as mosqpub|9573-heretic (c1, k60, u'user1'). +1548239758: Client mosqpub|9573-heretic disconnected. +1548239759: New connection from 172.21.0.1 on port 1883. +1548239759: New client connected from 172.21.0.1 as mosqpub|9574-heretic (c1, k60, u'user1'). +1548239759: Client mosqpub|9574-heretic disconnected. +1548239759: New connection from 172.21.0.1 on port 1883. +1548239759: New client connected from 172.21.0.1 as mosqpub|9575-heretic (c1, k60, u'user1'). +1548239759: Client mosqpub|9575-heretic disconnected. +1548239760: New connection from 172.21.0.1 on port 1883. +1548239760: New client connected from 172.21.0.1 as mosqpub|9576-heretic (c1, k60, u'user1'). +1548239760: Client mosqpub|9576-heretic disconnected. +1548239760: New connection from 172.21.0.1 on port 1883. +1548239760: New client connected from 172.21.0.1 as mosqpub|9577-heretic (c1, k60, u'user1'). +1548239760: Client mosqpub|9577-heretic disconnected. +1548239761: New connection from 172.21.0.1 on port 1883. +1548239761: New client connected from 172.21.0.1 as mosqpub|9578-heretic (c1, k60, u'user1'). +1548239761: Client mosqpub|9578-heretic disconnected. +1548239761: New connection from 172.21.0.1 on port 1883. +1548239761: New client connected from 172.21.0.1 as mosqpub|9580-heretic (c1, k60, u'user1'). +1548239761: Client mosqpub|9580-heretic disconnected. +1548239762: New connection from 172.21.0.1 on port 1883. +1548239762: New client connected from 172.21.0.1 as mosqpub|9581-heretic (c1, k60, u'user1'). +1548239762: Client mosqpub|9581-heretic disconnected. +1548239762: New connection from 172.21.0.1 on port 1883. +1548239762: New client connected from 172.21.0.1 as mosqpub|9582-heretic (c1, k60, u'user1'). +1548239762: Client mosqpub|9582-heretic disconnected. +1548239763: New connection from 172.21.0.1 on port 1883. +1548239763: New client connected from 172.21.0.1 as mosqpub|9583-heretic (c1, k60, u'user1'). +1548239763: Client mosqpub|9583-heretic disconnected. +1548239763: New connection from 172.21.0.1 on port 1883. +1548239763: New client connected from 172.21.0.1 as mosqpub|9584-heretic (c1, k60, u'user1'). +1548239763: Client mosqpub|9584-heretic disconnected. +1548239764: New connection from 172.21.0.1 on port 1883. +1548239764: New client connected from 172.21.0.1 as mosqpub|9586-heretic (c1, k60, u'user1'). +1548239764: Client mosqpub|9586-heretic disconnected. +1548239764: New connection from 172.21.0.1 on port 1883. +1548239764: New client connected from 172.21.0.1 as mosqpub|9587-heretic (c1, k60, u'user1'). +1548239764: Client mosqpub|9587-heretic disconnected. +1548239765: New connection from 172.21.0.1 on port 1883. +1548239765: New client connected from 172.21.0.1 as mosqpub|9588-heretic (c1, k60, u'user1'). +1548239765: Client mosqpub|9588-heretic disconnected. +1548239765: New connection from 172.21.0.1 on port 1883. +1548239765: New client connected from 172.21.0.1 as mosqpub|9589-heretic (c1, k60, u'user1'). +1548239765: Client mosqpub|9589-heretic disconnected. +1548239766: New connection from 172.21.0.1 on port 1883. +1548239766: New client connected from 172.21.0.1 as mosqpub|9590-heretic (c1, k60, u'user1'). +1548239766: Client mosqpub|9590-heretic disconnected. +1548239766: New connection from 172.21.0.1 on port 1883. +1548239766: New client connected from 172.21.0.1 as mosqpub|9591-heretic (c1, k60, u'user1'). +1548239766: Client mosqpub|9591-heretic disconnected. +1548239767: New connection from 172.21.0.1 on port 1883. +1548239767: New client connected from 172.21.0.1 as mosqpub|9592-heretic (c1, k60, u'user1'). +1548239767: Client mosqpub|9592-heretic disconnected. +1548239768: New connection from 172.21.0.1 on port 1883. +1548239768: New client connected from 172.21.0.1 as mosqpub|9593-heretic (c1, k60, u'user1'). +1548239768: Client mosqpub|9593-heretic disconnected. +1548239768: New connection from 172.21.0.1 on port 1883. +1548239768: New client connected from 172.21.0.1 as mosqpub|9594-heretic (c1, k60, u'user1'). +1548239768: Client mosqpub|9594-heretic disconnected. +1548239769: New connection from 172.21.0.1 on port 1883. +1548239769: New client connected from 172.21.0.1 as mosqpub|9595-heretic (c1, k60, u'user1'). +1548239769: Client mosqpub|9595-heretic disconnected. +1548239769: New connection from 172.21.0.1 on port 1883. +1548239769: New client connected from 172.21.0.1 as mosqpub|9596-heretic (c1, k60, u'user1'). +1548239769: Client mosqpub|9596-heretic disconnected. +1548239770: New connection from 172.21.0.1 on port 1883. +1548239770: New client connected from 172.21.0.1 as mosqpub|9597-heretic (c1, k60, u'user1'). +1548239770: Client mosqpub|9597-heretic disconnected. +1548239770: New connection from 172.21.0.1 on port 1883. +1548239770: New client connected from 172.21.0.1 as mosqpub|9598-heretic (c1, k60, u'user1'). +1548239770: Client mosqpub|9598-heretic disconnected. +1548239771: New connection from 172.21.0.1 on port 1883. +1548239771: New client connected from 172.21.0.1 as mosqpub|9599-heretic (c1, k60, u'user1'). +1548239771: Client mosqpub|9599-heretic disconnected. +1548239771: New connection from 172.21.0.1 on port 1883. +1548239771: New client connected from 172.21.0.1 as mosqpub|9600-heretic (c1, k60, u'user1'). +1548239771: Client mosqpub|9600-heretic disconnected. +1548239772: New connection from 172.21.0.1 on port 1883. +1548239772: New client connected from 172.21.0.1 as mosqpub|9601-heretic (c1, k60, u'user1'). +1548239772: Client mosqpub|9601-heretic disconnected. +1548239772: New connection from 172.21.0.1 on port 1883. +1548239772: New client connected from 172.21.0.1 as mosqpub|9602-heretic (c1, k60, u'user1'). +1548239772: Client mosqpub|9602-heretic disconnected. +1548239773: New connection from 172.21.0.1 on port 1883. +1548239773: New client connected from 172.21.0.1 as mosqpub|9603-heretic (c1, k60, u'user1'). +1548239773: Client mosqpub|9603-heretic disconnected. +1548239773: New connection from 172.21.0.1 on port 1883. +1548239773: New client connected from 172.21.0.1 as mosqpub|9604-heretic (c1, k60, u'user1'). +1548239773: Client mosqpub|9604-heretic disconnected. +1548239774: New connection from 172.21.0.1 on port 1883. +1548239774: New client connected from 172.21.0.1 as mosqpub|9605-heretic (c1, k60, u'user1'). +1548239774: Client mosqpub|9605-heretic disconnected. +1548239774: New connection from 172.21.0.1 on port 1883. +1548239774: New client connected from 172.21.0.1 as mosqpub|9606-heretic (c1, k60, u'user1'). +1548239774: Client mosqpub|9606-heretic disconnected. +1548239775: New connection from 172.21.0.1 on port 1883. +1548239775: New client connected from 172.21.0.1 as mosqpub|9607-heretic (c1, k60, u'user1'). +1548239775: Client mosqpub|9607-heretic disconnected. +1548239775: New connection from 172.21.0.1 on port 1883. +1548239775: New client connected from 172.21.0.1 as mosqpub|9608-heretic (c1, k60, u'user1'). +1548239775: Client mosqpub|9608-heretic disconnected. +1548239776: New connection from 172.21.0.1 on port 1883. +1548239776: New client connected from 172.21.0.1 as mosqpub|9609-heretic (c1, k60, u'user1'). +1548239776: Client mosqpub|9609-heretic disconnected. +1548239776: New connection from 172.21.0.1 on port 1883. +1548239776: New client connected from 172.21.0.1 as mosqpub|9610-heretic (c1, k60, u'user1'). +1548239776: Client mosqpub|9610-heretic disconnected. +1548239777: New connection from 172.21.0.1 on port 1883. +1548239777: New client connected from 172.21.0.1 as mosqpub|9611-heretic (c1, k60, u'user1'). +1548239777: Client mosqpub|9611-heretic disconnected. +1548239777: New connection from 172.21.0.1 on port 1883. +1548239777: New client connected from 172.21.0.1 as mosqpub|9612-heretic (c1, k60, u'user1'). +1548239777: Client mosqpub|9612-heretic disconnected. +1548239778: New connection from 172.21.0.1 on port 1883. +1548239778: New client connected from 172.21.0.1 as mosqpub|9613-heretic (c1, k60, u'user1'). +1548239778: Client mosqpub|9613-heretic disconnected. +1548239778: New connection from 172.21.0.1 on port 1883. +1548239778: New client connected from 172.21.0.1 as mosqpub|9614-heretic (c1, k60, u'user1'). +1548239778: Client mosqpub|9614-heretic disconnected. +1548239779: New connection from 172.21.0.1 on port 1883. +1548239779: New client connected from 172.21.0.1 as mosqpub|9615-heretic (c1, k60, u'user1'). +1548239779: Client mosqpub|9615-heretic disconnected. +1548239779: New connection from 172.21.0.1 on port 1883. +1548239779: New client connected from 172.21.0.1 as mosqpub|9616-heretic (c1, k60, u'user1'). +1548239779: Client mosqpub|9616-heretic disconnected. +1548239780: New connection from 172.21.0.1 on port 1883. +1548239780: New client connected from 172.21.0.1 as mosqpub|9617-heretic (c1, k60, u'user1'). +1548239780: Client mosqpub|9617-heretic disconnected. +1548239780: New connection from 172.21.0.1 on port 1883. +1548239780: New client connected from 172.21.0.1 as mosqpub|9618-heretic (c1, k60, u'user1'). +1548239780: Client mosqpub|9618-heretic disconnected. +1548239781: New connection from 172.21.0.1 on port 1883. +1548239781: New client connected from 172.21.0.1 as mosqpub|9625-heretic (c1, k60, u'user1'). +1548239781: Client mosqpub|9625-heretic disconnected. +1548239781: New connection from 172.21.0.1 on port 1883. +1548239781: New client connected from 172.21.0.1 as mosqpub|9628-heretic (c1, k60, u'user1'). +1548239781: Client mosqpub|9628-heretic disconnected. +1548239782: New connection from 172.21.0.1 on port 1883. +1548239782: New client connected from 172.21.0.1 as mosqpub|9629-heretic (c1, k60, u'user1'). +1548239782: Client mosqpub|9629-heretic disconnected. +1548239782: New connection from 172.21.0.1 on port 1883. +1548239782: New client connected from 172.21.0.1 as mosqpub|9630-heretic (c1, k60, u'user1'). +1548239782: Client mosqpub|9630-heretic disconnected. +1548239783: New connection from 172.21.0.1 on port 1883. +1548239783: New client connected from 172.21.0.1 as mosqpub|9631-heretic (c1, k60, u'user1'). +1548239783: Client mosqpub|9631-heretic disconnected. +1548239783: New connection from 172.21.0.1 on port 1883. +1548239783: New client connected from 172.21.0.1 as mosqpub|9632-heretic (c1, k60, u'user1'). +1548239783: Client mosqpub|9632-heretic disconnected. +1548239784: New connection from 172.21.0.1 on port 1883. +1548239784: New client connected from 172.21.0.1 as mosqpub|9633-heretic (c1, k60, u'user1'). +1548239784: Client mosqpub|9633-heretic disconnected. +1548239784: New connection from 172.21.0.1 on port 1883. +1548239784: New client connected from 172.21.0.1 as mosqpub|9634-heretic (c1, k60, u'user1'). +1548239784: Client mosqpub|9634-heretic disconnected. +1548239785: New connection from 172.21.0.1 on port 1883. +1548239785: New client connected from 172.21.0.1 as mosqpub|9635-heretic (c1, k60, u'user1'). +1548239785: Client mosqpub|9635-heretic disconnected. +1548239785: New connection from 172.21.0.1 on port 1883. +1548239785: New client connected from 172.21.0.1 as mosqpub|9636-heretic (c1, k60, u'user1'). +1548239785: Client mosqpub|9636-heretic disconnected. +1548239786: New connection from 172.21.0.1 on port 1883. +1548239786: New client connected from 172.21.0.1 as mosqpub|9637-heretic (c1, k60, u'user1'). +1548239786: Client mosqpub|9637-heretic disconnected. +1548239786: New connection from 172.21.0.1 on port 1883. +1548239786: New client connected from 172.21.0.1 as mosqpub|9638-heretic (c1, k60, u'user1'). +1548239786: Client mosqpub|9638-heretic disconnected. +1548239787: New connection from 172.21.0.1 on port 1883. +1548239787: New client connected from 172.21.0.1 as mosqpub|9639-heretic (c1, k60, u'user1'). +1548239787: Client mosqpub|9639-heretic disconnected. +1548239787: New connection from 172.21.0.1 on port 1883. +1548239787: New client connected from 172.21.0.1 as mosqpub|9640-heretic (c1, k60, u'user1'). +1548239787: Client mosqpub|9640-heretic disconnected. +1548239788: New connection from 172.21.0.1 on port 1883. +1548239788: New client connected from 172.21.0.1 as mosqpub|9641-heretic (c1, k60, u'user1'). +1548239788: Client mosqpub|9641-heretic disconnected. +1548239788: New connection from 172.21.0.1 on port 1883. +1548239788: New client connected from 172.21.0.1 as mosqpub|9642-heretic (c1, k60, u'user1'). +1548239788: Client mosqpub|9642-heretic disconnected. +1548239789: New connection from 172.21.0.1 on port 1883. +1548239789: New client connected from 172.21.0.1 as mosqpub|9643-heretic (c1, k60, u'user1'). +1548239789: Client mosqpub|9643-heretic disconnected. +1548239789: New connection from 172.21.0.1 on port 1883. +1548239789: New client connected from 172.21.0.1 as mosqpub|9645-heretic (c1, k60, u'user1'). +1548239789: Client mosqpub|9645-heretic disconnected. +1548239790: New connection from 172.21.0.1 on port 1883. +1548239790: New client connected from 172.21.0.1 as mosqpub|9646-heretic (c1, k60, u'user1'). +1548239790: Client mosqpub|9646-heretic disconnected. +1548239790: New connection from 172.21.0.1 on port 1883. +1548239790: New client connected from 172.21.0.1 as mosqpub|9647-heretic (c1, k60, u'user1'). +1548239790: Client mosqpub|9647-heretic disconnected. +1548239791: New connection from 172.21.0.1 on port 1883. +1548239791: New client connected from 172.21.0.1 as mosqpub|9648-heretic (c1, k60, u'user1'). +1548239791: Client mosqpub|9648-heretic disconnected. +1548239791: New connection from 172.21.0.1 on port 1883. +1548239791: New client connected from 172.21.0.1 as mosqpub|9649-heretic (c1, k60, u'user1'). +1548239791: Client mosqpub|9649-heretic disconnected. +1548239792: New connection from 172.21.0.1 on port 1883. +1548239792: New client connected from 172.21.0.1 as mosqpub|9650-heretic (c1, k60, u'user1'). +1548239792: Client mosqpub|9650-heretic disconnected. +1548239792: New connection from 172.21.0.1 on port 1883. +1548239792: New client connected from 172.21.0.1 as mosqpub|9651-heretic (c1, k60, u'user1'). +1548239792: Client mosqpub|9651-heretic disconnected. +1548239793: New connection from 172.21.0.1 on port 1883. +1548239793: New client connected from 172.21.0.1 as mosqpub|9652-heretic (c1, k60, u'user1'). +1548239793: Client mosqpub|9652-heretic disconnected. +1548239793: New connection from 172.21.0.1 on port 1883. +1548239793: New client connected from 172.21.0.1 as mosqpub|9653-heretic (c1, k60, u'user1'). +1548239793: Client mosqpub|9653-heretic disconnected. +1548239794: New connection from 172.21.0.1 on port 1883. +1548239794: New client connected from 172.21.0.1 as mosqpub|9654-heretic (c1, k60, u'user1'). +1548239794: Client mosqpub|9654-heretic disconnected. +1548239794: New connection from 172.21.0.1 on port 1883. +1548239794: New client connected from 172.21.0.1 as mosqpub|9655-heretic (c1, k60, u'user1'). +1548239794: Client mosqpub|9655-heretic disconnected. +1548239795: New connection from 172.21.0.1 on port 1883. +1548239795: New client connected from 172.21.0.1 as mosqpub|9656-heretic (c1, k60, u'user1'). +1548239795: Client mosqpub|9656-heretic disconnected. +1548239795: New connection from 172.21.0.1 on port 1883. +1548239795: New client connected from 172.21.0.1 as mosqpub|9657-heretic (c1, k60, u'user1'). +1548239795: Client mosqpub|9657-heretic disconnected. +1548239796: New connection from 172.21.0.1 on port 1883. +1548239796: New client connected from 172.21.0.1 as mosqpub|9658-heretic (c1, k60, u'user1'). +1548239796: Client mosqpub|9658-heretic disconnected. +1548239796: New connection from 172.21.0.1 on port 1883. +1548239796: New client connected from 172.21.0.1 as mosqpub|9659-heretic (c1, k60, u'user1'). +1548239796: Client mosqpub|9659-heretic disconnected. +1548239797: New connection from 172.21.0.1 on port 1883. +1548239797: New client connected from 172.21.0.1 as mosqpub|9660-heretic (c1, k60, u'user1'). +1548239797: Client mosqpub|9660-heretic disconnected. +1548239797: New connection from 172.21.0.1 on port 1883. +1548239797: New client connected from 172.21.0.1 as mosqpub|9661-heretic (c1, k60, u'user1'). +1548239797: Client mosqpub|9661-heretic disconnected. +1548239798: New connection from 172.21.0.1 on port 1883. +1548239798: New client connected from 172.21.0.1 as mosqpub|9662-heretic (c1, k60, u'user1'). +1548239798: Client mosqpub|9662-heretic disconnected. +1548239798: New connection from 172.21.0.1 on port 1883. +1548239798: New client connected from 172.21.0.1 as mosqpub|9663-heretic (c1, k60, u'user1'). +1548239798: Client mosqpub|9663-heretic disconnected. +1548239799: New connection from 172.21.0.1 on port 1883. +1548239799: New client connected from 172.21.0.1 as mosqpub|9664-heretic (c1, k60, u'user1'). +1548239799: Client mosqpub|9664-heretic disconnected. +1548239799: New connection from 172.21.0.1 on port 1883. +1548239799: New client connected from 172.21.0.1 as mosqpub|9665-heretic (c1, k60, u'user1'). +1548239799: Client mosqpub|9665-heretic disconnected. +1548239800: New connection from 172.21.0.1 on port 1883. +1548239800: New client connected from 172.21.0.1 as mosqpub|9668-heretic (c1, k60, u'user1'). +1548239800: Client mosqpub|9668-heretic disconnected. +1548239800: New connection from 172.21.0.1 on port 1883. +1548239800: New client connected from 172.21.0.1 as mosqpub|9669-heretic (c1, k60, u'user1'). +1548239800: Client mosqpub|9669-heretic disconnected. +1548239801: New connection from 172.21.0.1 on port 1883. +1548239801: New client connected from 172.21.0.1 as mosqpub|9671-heretic (c1, k60, u'user1'). +1548239801: Client mosqpub|9671-heretic disconnected. +1548239801: New connection from 172.21.0.1 on port 1883. +1548239801: New client connected from 172.21.0.1 as mosqpub|9672-heretic (c1, k60, u'user1'). +1548239801: Client mosqpub|9672-heretic disconnected. +1548239802: New connection from 172.21.0.1 on port 1883. +1548239802: New client connected from 172.21.0.1 as mosqpub|9676-heretic (c1, k60, u'user1'). +1548239802: Client mosqpub|9676-heretic disconnected. +1548239803: New connection from 172.21.0.1 on port 1883. +1548239803: New client connected from 172.21.0.1 as mosqpub|9677-heretic (c1, k60, u'user1'). +1548239803: Client mosqpub|9677-heretic disconnected. +1548239803: New connection from 172.21.0.1 on port 1883. +1548239803: New client connected from 172.21.0.1 as mosqpub|9678-heretic (c1, k60, u'user1'). +1548239803: Client mosqpub|9678-heretic disconnected. +1548239804: New connection from 172.21.0.1 on port 1883. +1548239804: New client connected from 172.21.0.1 as mosqpub|9679-heretic (c1, k60, u'user1'). +1548239804: Client mosqpub|9679-heretic disconnected. +1548239804: New connection from 172.21.0.1 on port 1883. +1548239804: New client connected from 172.21.0.1 as mosqpub|9680-heretic (c1, k60, u'user1'). +1548239804: Client mosqpub|9680-heretic disconnected. +1548239805: New connection from 172.21.0.1 on port 1883. +1548239805: New client connected from 172.21.0.1 as mosqpub|9681-heretic (c1, k60, u'user1'). +1548239805: Client mosqpub|9681-heretic disconnected. +1548239805: New connection from 172.21.0.1 on port 1883. +1548239805: New client connected from 172.21.0.1 as mosqpub|9682-heretic (c1, k60, u'user1'). +1548239805: Client mosqpub|9682-heretic disconnected. +1548239806: New connection from 172.21.0.1 on port 1883. +1548239806: New client connected from 172.21.0.1 as mosqpub|9683-heretic (c1, k60, u'user1'). +1548239806: Client mosqpub|9683-heretic disconnected. +1548239806: New connection from 172.21.0.1 on port 1883. +1548239806: New client connected from 172.21.0.1 as mosqpub|9684-heretic (c1, k60, u'user1'). +1548239806: Client mosqpub|9684-heretic disconnected. +1548239807: New connection from 172.21.0.1 on port 1883. +1548239807: New client connected from 172.21.0.1 as mosqpub|9685-heretic (c1, k60, u'user1'). +1548239807: Client mosqpub|9685-heretic disconnected. +1548239807: New connection from 172.21.0.1 on port 1883. +1548239807: New client connected from 172.21.0.1 as mosqpub|9686-heretic (c1, k60, u'user1'). +1548239807: Client mosqpub|9686-heretic disconnected. +1548239808: New connection from 172.21.0.1 on port 1883. +1548239808: New client connected from 172.21.0.1 as mosqpub|9687-heretic (c1, k60, u'user1'). +1548239808: Client mosqpub|9687-heretic disconnected. +1548239808: New connection from 172.21.0.1 on port 1883. +1548239808: New client connected from 172.21.0.1 as mosqpub|9688-heretic (c1, k60, u'user1'). +1548239808: Client mosqpub|9688-heretic disconnected. +1548239809: New connection from 172.21.0.1 on port 1883. +1548239809: New client connected from 172.21.0.1 as mosqpub|9689-heretic (c1, k60, u'user1'). +1548239809: Client mosqpub|9689-heretic disconnected. +1548239809: New connection from 172.21.0.1 on port 1883. +1548239809: New client connected from 172.21.0.1 as mosqpub|9690-heretic (c1, k60, u'user1'). +1548239809: Client mosqpub|9690-heretic disconnected. +1548239810: New connection from 172.21.0.1 on port 1883. +1548239810: New client connected from 172.21.0.1 as mosqpub|9691-heretic (c1, k60, u'user1'). +1548239810: Client mosqpub|9691-heretic disconnected. +1548239810: New connection from 172.21.0.1 on port 1883. +1548239810: New client connected from 172.21.0.1 as mosqpub|9692-heretic (c1, k60, u'user1'). +1548239810: Client mosqpub|9692-heretic disconnected. +1548239811: New connection from 172.21.0.1 on port 1883. +1548239811: New client connected from 172.21.0.1 as mosqpub|9693-heretic (c1, k60, u'user1'). +1548239811: Client mosqpub|9693-heretic disconnected. +1548239811: New connection from 172.21.0.1 on port 1883. +1548239811: New client connected from 172.21.0.1 as mosqpub|9694-heretic (c1, k60, u'user1'). +1548239811: Client mosqpub|9694-heretic disconnected. +1548239812: New connection from 172.21.0.1 on port 1883. +1548239812: New client connected from 172.21.0.1 as mosqpub|9695-heretic (c1, k60, u'user1'). +1548239812: Client mosqpub|9695-heretic disconnected. +1548239812: New connection from 172.21.0.1 on port 1883. +1548239812: New client connected from 172.21.0.1 as mosqpub|9696-heretic (c1, k60, u'user1'). +1548239812: Client mosqpub|9696-heretic disconnected. +1548239813: New connection from 172.21.0.1 on port 1883. +1548239813: New client connected from 172.21.0.1 as mosqpub|9697-heretic (c1, k60, u'user1'). +1548239813: Client mosqpub|9697-heretic disconnected. +1548239813: New connection from 172.21.0.1 on port 1883. +1548239813: New client connected from 172.21.0.1 as mosqpub|9698-heretic (c1, k60, u'user1'). +1548239813: Client mosqpub|9698-heretic disconnected. +1548239814: New connection from 172.21.0.1 on port 1883. +1548239814: New client connected from 172.21.0.1 as mosqpub|9699-heretic (c1, k60, u'user1'). +1548239814: Client mosqpub|9699-heretic disconnected. +1548239814: New connection from 172.21.0.1 on port 1883. +1548239814: New client connected from 172.21.0.1 as mosqpub|9700-heretic (c1, k60, u'user1'). +1548239814: Client mosqpub|9700-heretic disconnected. +1548239815: New connection from 172.21.0.1 on port 1883. +1548239815: New client connected from 172.21.0.1 as mosqpub|9701-heretic (c1, k60, u'user1'). +1548239815: Client mosqpub|9701-heretic disconnected. +1548239815: New connection from 172.21.0.1 on port 1883. +1548239815: New client connected from 172.21.0.1 as mosqpub|9702-heretic (c1, k60, u'user1'). +1548239815: Client mosqpub|9702-heretic disconnected. +1548239816: New connection from 172.21.0.1 on port 1883. +1548239816: New client connected from 172.21.0.1 as mosqpub|9703-heretic (c1, k60, u'user1'). +1548239816: Client mosqpub|9703-heretic disconnected. +1548239816: New connection from 172.21.0.1 on port 1883. +1548239816: New client connected from 172.21.0.1 as mosqpub|9704-heretic (c1, k60, u'user1'). +1548239816: Client mosqpub|9704-heretic disconnected. +1548239817: New connection from 172.21.0.1 on port 1883. +1548239817: New client connected from 172.21.0.1 as mosqpub|9705-heretic (c1, k60, u'user1'). +1548239817: Client mosqpub|9705-heretic disconnected. +1548239817: New connection from 172.21.0.1 on port 1883. +1548239817: New client connected from 172.21.0.1 as mosqpub|9706-heretic (c1, k60, u'user1'). +1548239817: Client mosqpub|9706-heretic disconnected. +1548239818: New connection from 172.21.0.1 on port 1883. +1548239818: New client connected from 172.21.0.1 as mosqpub|9707-heretic (c1, k60, u'user1'). +1548239818: Client mosqpub|9707-heretic disconnected. +1548239818: New connection from 172.21.0.1 on port 1883. +1548239818: New client connected from 172.21.0.1 as mosqpub|9708-heretic (c1, k60, u'user1'). +1548239818: Client mosqpub|9708-heretic disconnected. +1548239819: New connection from 172.21.0.1 on port 1883. +1548239819: New client connected from 172.21.0.1 as mosqpub|9709-heretic (c1, k60, u'user1'). +1548239819: Client mosqpub|9709-heretic disconnected. +1548239819: New connection from 172.21.0.1 on port 1883. +1548239819: New client connected from 172.21.0.1 as mosqpub|9710-heretic (c1, k60, u'user1'). +1548239819: Client mosqpub|9710-heretic disconnected. +1548239820: New connection from 172.21.0.1 on port 1883. +1548239820: New client connected from 172.21.0.1 as mosqpub|9711-heretic (c1, k60, u'user1'). +1548239820: Client mosqpub|9711-heretic disconnected. +1548239820: New connection from 172.21.0.1 on port 1883. +1548239820: New client connected from 172.21.0.1 as mosqpub|9712-heretic (c1, k60, u'user1'). +1548239820: Client mosqpub|9712-heretic disconnected. +1548239821: New connection from 172.21.0.1 on port 1883. +1548239821: New client connected from 172.21.0.1 as mosqpub|9713-heretic (c1, k60, u'user1'). +1548239821: Client mosqpub|9713-heretic disconnected. +1548239821: New connection from 172.21.0.1 on port 1883. +1548239821: New client connected from 172.21.0.1 as mosqpub|9714-heretic (c1, k60, u'user1'). +1548239821: Client mosqpub|9714-heretic disconnected. +1548239822: New connection from 172.21.0.1 on port 1883. +1548239822: New client connected from 172.21.0.1 as mosqpub|9715-heretic (c1, k60, u'user1'). +1548239822: Client mosqpub|9715-heretic disconnected. +1548239822: New connection from 172.21.0.1 on port 1883. +1548239822: New client connected from 172.21.0.1 as mosqpub|9716-heretic (c1, k60, u'user1'). +1548239822: Client mosqpub|9716-heretic disconnected. +1548239823: New connection from 172.21.0.1 on port 1883. +1548239823: New client connected from 172.21.0.1 as mosqpub|9717-heretic (c1, k60, u'user1'). +1548239823: Client mosqpub|9717-heretic disconnected. +1548239823: New connection from 172.21.0.1 on port 1883. +1548239823: New client connected from 172.21.0.1 as mosqpub|9718-heretic (c1, k60, u'user1'). +1548239823: Client mosqpub|9718-heretic disconnected. +1548239824: New connection from 172.21.0.1 on port 1883. +1548239824: New client connected from 172.21.0.1 as mosqpub|9719-heretic (c1, k60, u'user1'). +1548239824: Client mosqpub|9719-heretic disconnected. +1548239824: New connection from 172.21.0.1 on port 1883. +1548239824: New client connected from 172.21.0.1 as mosqpub|9720-heretic (c1, k60, u'user1'). +1548239824: Client mosqpub|9720-heretic disconnected. +1548239825: New connection from 172.21.0.1 on port 1883. +1548239825: New client connected from 172.21.0.1 as mosqpub|9721-heretic (c1, k60, u'user1'). +1548239825: Client mosqpub|9721-heretic disconnected. +1548239825: New connection from 172.21.0.1 on port 1883. +1548239825: New client connected from 172.21.0.1 as mosqpub|9722-heretic (c1, k60, u'user1'). +1548239825: Client mosqpub|9722-heretic disconnected. +1548239826: New connection from 172.21.0.1 on port 1883. +1548239826: New client connected from 172.21.0.1 as mosqpub|9723-heretic (c1, k60, u'user1'). +1548239826: Client mosqpub|9723-heretic disconnected. +1548239826: New connection from 172.21.0.1 on port 1883. +1548239826: New client connected from 172.21.0.1 as mosqpub|9724-heretic (c1, k60, u'user1'). +1548239826: Client mosqpub|9724-heretic disconnected. +1548239827: New connection from 172.21.0.1 on port 1883. +1548239827: New client connected from 172.21.0.1 as mosqpub|9725-heretic (c1, k60, u'user1'). +1548239827: Client mosqpub|9725-heretic disconnected. +1548239827: New connection from 172.21.0.1 on port 1883. +1548239827: New client connected from 172.21.0.1 as mosqpub|9726-heretic (c1, k60, u'user1'). +1548239827: Client mosqpub|9726-heretic disconnected. +1548239828: New connection from 172.21.0.1 on port 1883. +1548239828: New client connected from 172.21.0.1 as mosqpub|9727-heretic (c1, k60, u'user1'). +1548239828: Client mosqpub|9727-heretic disconnected. +1548239828: New connection from 172.21.0.1 on port 1883. +1548239828: New client connected from 172.21.0.1 as mosqpub|9728-heretic (c1, k60, u'user1'). +1548239828: Client mosqpub|9728-heretic disconnected. +1548239829: New connection from 172.21.0.1 on port 1883. +1548239829: New client connected from 172.21.0.1 as mosqpub|9729-heretic (c1, k60, u'user1'). +1548239829: Client mosqpub|9729-heretic disconnected. +1548239829: New connection from 172.21.0.1 on port 1883. +1548239829: New client connected from 172.21.0.1 as mosqpub|9730-heretic (c1, k60, u'user1'). +1548239829: Client mosqpub|9730-heretic disconnected. +1548239830: New connection from 172.21.0.1 on port 1883. +1548239830: New client connected from 172.21.0.1 as mosqpub|9731-heretic (c1, k60, u'user1'). +1548239830: Client mosqpub|9731-heretic disconnected. +1548239830: New connection from 172.21.0.1 on port 1883. +1548239830: New client connected from 172.21.0.1 as mosqpub|9732-heretic (c1, k60, u'user1'). +1548239830: Client mosqpub|9732-heretic disconnected. +1548239831: New connection from 172.21.0.1 on port 1883. +1548239831: New client connected from 172.21.0.1 as mosqpub|9733-heretic (c1, k60, u'user1'). +1548239831: Client mosqpub|9733-heretic disconnected. +1548239831: New connection from 172.21.0.1 on port 1883. +1548239831: New client connected from 172.21.0.1 as mosqpub|9734-heretic (c1, k60, u'user1'). +1548239831: Client mosqpub|9734-heretic disconnected. +1548239832: New connection from 172.21.0.1 on port 1883. +1548239832: New client connected from 172.21.0.1 as mosqpub|9735-heretic (c1, k60, u'user1'). +1548239832: Client mosqpub|9735-heretic disconnected. +1548239832: New connection from 172.21.0.1 on port 1883. +1548239832: New client connected from 172.21.0.1 as mosqpub|9736-heretic (c1, k60, u'user1'). +1548239832: Client mosqpub|9736-heretic disconnected. +1548239833: New connection from 172.21.0.1 on port 1883. +1548239833: New client connected from 172.21.0.1 as mosqpub|9737-heretic (c1, k60, u'user1'). +1548239833: Client mosqpub|9737-heretic disconnected. +1548239833: New connection from 172.21.0.1 on port 1883. +1548239833: New client connected from 172.21.0.1 as mosqpub|9738-heretic (c1, k60, u'user1'). +1548239833: Client mosqpub|9738-heretic disconnected. +1548239834: New connection from 172.21.0.1 on port 1883. +1548239834: New client connected from 172.21.0.1 as mosqpub|9739-heretic (c1, k60, u'user1'). +1548239834: Client mosqpub|9739-heretic disconnected. +1548239834: New connection from 172.21.0.1 on port 1883. +1548239834: New client connected from 172.21.0.1 as mosqpub|9740-heretic (c1, k60, u'user1'). +1548239834: Client mosqpub|9740-heretic disconnected. +1548239835: New connection from 172.21.0.1 on port 1883. +1548239835: New client connected from 172.21.0.1 as mosqpub|9741-heretic (c1, k60, u'user1'). +1548239835: Client mosqpub|9741-heretic disconnected. +1548239835: New connection from 172.21.0.1 on port 1883. +1548239835: New client connected from 172.21.0.1 as mosqpub|9742-heretic (c1, k60, u'user1'). +1548239835: Client mosqpub|9742-heretic disconnected. +1548239836: New connection from 172.21.0.1 on port 1883. +1548239836: New client connected from 172.21.0.1 as mosqpub|9743-heretic (c1, k60, u'user1'). +1548239836: Client mosqpub|9743-heretic disconnected. +1548239836: New connection from 172.21.0.1 on port 1883. +1548239836: New client connected from 172.21.0.1 as mosqpub|9744-heretic (c1, k60, u'user1'). +1548239836: Client mosqpub|9744-heretic disconnected. +1548239837: New connection from 172.21.0.1 on port 1883. +1548239837: New client connected from 172.21.0.1 as mosqpub|9745-heretic (c1, k60, u'user1'). +1548239837: Client mosqpub|9745-heretic disconnected. +1548239837: New connection from 172.21.0.1 on port 1883. +1548239837: New client connected from 172.21.0.1 as mosqpub|9746-heretic (c1, k60, u'user1'). +1548239837: Client mosqpub|9746-heretic disconnected. +1548239838: New connection from 172.21.0.1 on port 1883. +1548239838: New client connected from 172.21.0.1 as mosqpub|9747-heretic (c1, k60, u'user1'). +1548239838: Client mosqpub|9747-heretic disconnected. +1548239839: New connection from 172.21.0.1 on port 1883. +1548239839: New client connected from 172.21.0.1 as mosqpub|9748-heretic (c1, k60, u'user1'). +1548239839: Client mosqpub|9748-heretic disconnected. +1548239839: New connection from 172.21.0.1 on port 1883. +1548239839: New client connected from 172.21.0.1 as mosqpub|9749-heretic (c1, k60, u'user1'). +1548239839: Client mosqpub|9749-heretic disconnected. +1548239840: New connection from 172.21.0.1 on port 1883. +1548239840: New client connected from 172.21.0.1 as mosqpub|9750-heretic (c1, k60, u'user1'). +1548239840: Client mosqpub|9750-heretic disconnected. +1548239840: New connection from 172.21.0.1 on port 1883. +1548239840: New client connected from 172.21.0.1 as mosqpub|9751-heretic (c1, k60, u'user1'). +1548239840: Client mosqpub|9751-heretic disconnected. +1548239841: New connection from 172.21.0.1 on port 1883. +1548239841: New client connected from 172.21.0.1 as mosqpub|9752-heretic (c1, k60, u'user1'). +1548239841: Client mosqpub|9752-heretic disconnected. +1548239841: New connection from 172.21.0.1 on port 1883. +1548239841: New client connected from 172.21.0.1 as mosqpub|9753-heretic (c1, k60, u'user1'). +1548239841: Client mosqpub|9753-heretic disconnected. +1548239842: New connection from 172.21.0.1 on port 1883. +1548239842: New client connected from 172.21.0.1 as mosqpub|9754-heretic (c1, k60, u'user1'). +1548239842: Client mosqpub|9754-heretic disconnected. +1548239842: New connection from 172.21.0.1 on port 1883. +1548239842: New client connected from 172.21.0.1 as mosqpub|9755-heretic (c1, k60, u'user1'). +1548239842: Client mosqpub|9755-heretic disconnected. +1548239843: New connection from 172.21.0.1 on port 1883. +1548239843: New client connected from 172.21.0.1 as mosqpub|9756-heretic (c1, k60, u'user1'). +1548239843: Client mosqpub|9756-heretic disconnected. +1548239843: New connection from 172.21.0.1 on port 1883. +1548239843: New client connected from 172.21.0.1 as mosqpub|9757-heretic (c1, k60, u'user1'). +1548239843: Client mosqpub|9757-heretic disconnected. +1548239844: New connection from 172.21.0.1 on port 1883. +1548239844: New client connected from 172.21.0.1 as mosqpub|9758-heretic (c1, k60, u'user1'). +1548239844: Client mosqpub|9758-heretic disconnected. +1548239844: New connection from 172.21.0.1 on port 1883. +1548239844: New client connected from 172.21.0.1 as mosqpub|9759-heretic (c1, k60, u'user1'). +1548239844: Client mosqpub|9759-heretic disconnected. +1548239845: New connection from 172.21.0.1 on port 1883. +1548239845: New client connected from 172.21.0.1 as mosqpub|9760-heretic (c1, k60, u'user1'). +1548239845: Client mosqpub|9760-heretic disconnected. +1548239845: New connection from 172.21.0.1 on port 1883. +1548239845: New client connected from 172.21.0.1 as mosqpub|9761-heretic (c1, k60, u'user1'). +1548239845: Client mosqpub|9761-heretic disconnected. +1548239846: New connection from 172.21.0.1 on port 1883. +1548239846: New client connected from 172.21.0.1 as mosqpub|9762-heretic (c1, k60, u'user1'). +1548239846: Client mosqpub|9762-heretic disconnected. +1548239846: New connection from 172.21.0.1 on port 1883. +1548239846: New client connected from 172.21.0.1 as mosqpub|9763-heretic (c1, k60, u'user1'). +1548239846: Client mosqpub|9763-heretic disconnected. +1548239847: New connection from 172.21.0.1 on port 1883. +1548239847: New client connected from 172.21.0.1 as mosqpub|9764-heretic (c1, k60, u'user1'). +1548239847: Client mosqpub|9764-heretic disconnected. +1548239847: New connection from 172.21.0.1 on port 1883. +1548239847: New client connected from 172.21.0.1 as mosqpub|9765-heretic (c1, k60, u'user1'). +1548239847: Client mosqpub|9765-heretic disconnected. +1548239848: New connection from 172.21.0.1 on port 1883. +1548239848: New client connected from 172.21.0.1 as mosqpub|9766-heretic (c1, k60, u'user1'). +1548239848: Client mosqpub|9766-heretic disconnected. +1548239848: New connection from 172.21.0.1 on port 1883. +1548239848: New client connected from 172.21.0.1 as mosqpub|9767-heretic (c1, k60, u'user1'). +1548239848: Client mosqpub|9767-heretic disconnected. +1548239849: New connection from 172.21.0.1 on port 1883. +1548239849: New client connected from 172.21.0.1 as mosqpub|9768-heretic (c1, k60, u'user1'). +1548239849: Client mosqpub|9768-heretic disconnected. +1548239849: New connection from 172.21.0.1 on port 1883. +1548239849: New client connected from 172.21.0.1 as mosqpub|9769-heretic (c1, k60, u'user1'). +1548239849: Client mosqpub|9769-heretic disconnected. +1548239850: New connection from 172.21.0.1 on port 1883. +1548239850: New client connected from 172.21.0.1 as mosqpub|9770-heretic (c1, k60, u'user1'). +1548239850: Client mosqpub|9770-heretic disconnected. +1548239850: New connection from 172.21.0.1 on port 1883. +1548239850: New client connected from 172.21.0.1 as mosqpub|9771-heretic (c1, k60, u'user1'). +1548239850: Client mosqpub|9771-heretic disconnected. +1548239851: New connection from 172.21.0.1 on port 1883. +1548239851: New client connected from 172.21.0.1 as mosqpub|9772-heretic (c1, k60, u'user1'). +1548239851: Client mosqpub|9772-heretic disconnected. +1548239851: New connection from 172.21.0.1 on port 1883. +1548239851: New client connected from 172.21.0.1 as mosqpub|9773-heretic (c1, k60, u'user1'). +1548239851: Client mosqpub|9773-heretic disconnected. +1548239852: New connection from 172.21.0.1 on port 1883. +1548239852: New client connected from 172.21.0.1 as mosqpub|9774-heretic (c1, k60, u'user1'). +1548239852: Client mosqpub|9774-heretic disconnected. +1548239852: New connection from 172.21.0.1 on port 1883. +1548239852: New client connected from 172.21.0.1 as mosqpub|9775-heretic (c1, k60, u'user1'). +1548239852: Client mosqpub|9775-heretic disconnected. +1548239853: New connection from 172.21.0.1 on port 1883. +1548239853: New client connected from 172.21.0.1 as mosqpub|9776-heretic (c1, k60, u'user1'). +1548239853: Client mosqpub|9776-heretic disconnected. +1548239853: New connection from 172.21.0.1 on port 1883. +1548239853: New client connected from 172.21.0.1 as mosqpub|9777-heretic (c1, k60, u'user1'). +1548239853: Client mosqpub|9777-heretic disconnected. +1548239854: New connection from 172.21.0.1 on port 1883. +1548239854: New client connected from 172.21.0.1 as mosqpub|9778-heretic (c1, k60, u'user1'). +1548239854: Client mosqpub|9778-heretic disconnected. +1548239854: New connection from 172.21.0.1 on port 1883. +1548239854: New client connected from 172.21.0.1 as mosqpub|9779-heretic (c1, k60, u'user1'). +1548239854: Client mosqpub|9779-heretic disconnected. +1548239855: New connection from 172.21.0.1 on port 1883. +1548239855: New client connected from 172.21.0.1 as mosqpub|9781-heretic (c1, k60, u'user1'). +1548239855: Client mosqpub|9781-heretic disconnected. +1548239855: New connection from 172.21.0.1 on port 1883. +1548239855: New client connected from 172.21.0.1 as mosqpub|9782-heretic (c1, k60, u'user1'). +1548239855: Client mosqpub|9782-heretic disconnected. +1548239856: New connection from 172.21.0.1 on port 1883. +1548239856: New client connected from 172.21.0.1 as mosqpub|9783-heretic (c1, k60, u'user1'). +1548239856: Client mosqpub|9783-heretic disconnected. +1548239856: New connection from 172.21.0.1 on port 1883. +1548239856: New client connected from 172.21.0.1 as mosqpub|9784-heretic (c1, k60, u'user1'). +1548239856: Client mosqpub|9784-heretic disconnected. +1548239857: New connection from 172.21.0.1 on port 1883. +1548239857: New client connected from 172.21.0.1 as mosqpub|9785-heretic (c1, k60, u'user1'). +1548239857: Client mosqpub|9785-heretic disconnected. +1548239857: New connection from 172.21.0.1 on port 1883. +1548239857: New client connected from 172.21.0.1 as mosqpub|9786-heretic (c1, k60, u'user1'). +1548239857: Client mosqpub|9786-heretic disconnected. +1548239858: New connection from 172.21.0.1 on port 1883. +1548239858: New client connected from 172.21.0.1 as mosqpub|9787-heretic (c1, k60, u'user1'). +1548239858: Client mosqpub|9787-heretic disconnected. +1548239858: New connection from 172.21.0.1 on port 1883. +1548239858: New client connected from 172.21.0.1 as mosqpub|9788-heretic (c1, k60, u'user1'). +1548239858: Client mosqpub|9788-heretic disconnected. +1548239859: New connection from 172.21.0.1 on port 1883. +1548239859: New client connected from 172.21.0.1 as mosqpub|9789-heretic (c1, k60, u'user1'). +1548239859: Client mosqpub|9789-heretic disconnected. +1548239859: New connection from 172.21.0.1 on port 1883. +1548239859: New client connected from 172.21.0.1 as mosqpub|9790-heretic (c1, k60, u'user1'). +1548239859: Client mosqpub|9790-heretic disconnected. +1548239860: New connection from 172.21.0.1 on port 1883. +1548239860: New client connected from 172.21.0.1 as mosqpub|9791-heretic (c1, k60, u'user1'). +1548239860: Client mosqpub|9791-heretic disconnected. +1548239860: New connection from 172.21.0.1 on port 1883. +1548239860: New client connected from 172.21.0.1 as mosqpub|9792-heretic (c1, k60, u'user1'). +1548239860: Client mosqpub|9792-heretic disconnected. +1548239861: New connection from 172.21.0.1 on port 1883. +1548239861: New client connected from 172.21.0.1 as mosqpub|9793-heretic (c1, k60, u'user1'). +1548239861: Client mosqpub|9793-heretic disconnected. +1548239861: New connection from 172.21.0.1 on port 1883. +1548239861: New client connected from 172.21.0.1 as mosqpub|9794-heretic (c1, k60, u'user1'). +1548239861: Client mosqpub|9794-heretic disconnected. +1548239862: New connection from 172.21.0.1 on port 1883. +1548239862: New client connected from 172.21.0.1 as mosqpub|9796-heretic (c1, k60, u'user1'). +1548239862: Client mosqpub|9796-heretic disconnected. +1548239862: New connection from 172.21.0.1 on port 1883. +1548239862: New client connected from 172.21.0.1 as mosqpub|9797-heretic (c1, k60, u'user1'). +1548239862: Client mosqpub|9797-heretic disconnected. +1548239863: New connection from 172.21.0.1 on port 1883. +1548239863: New client connected from 172.21.0.1 as mosqpub|9798-heretic (c1, k60, u'user1'). +1548239863: Client mosqpub|9798-heretic disconnected. +1548239863: New connection from 172.21.0.1 on port 1883. +1548239863: New client connected from 172.21.0.1 as mosqpub|9799-heretic (c1, k60, u'user1'). +1548239863: Client mosqpub|9799-heretic disconnected. +1548239864: New connection from 172.21.0.1 on port 1883. +1548239864: New client connected from 172.21.0.1 as mosqpub|9800-heretic (c1, k60, u'user1'). +1548239864: Client mosqpub|9800-heretic disconnected. +1548239864: New connection from 172.21.0.1 on port 1883. +1548239864: New client connected from 172.21.0.1 as mosqpub|9801-heretic (c1, k60, u'user1'). +1548239864: Client mosqpub|9801-heretic disconnected. +1548239865: New connection from 172.21.0.1 on port 1883. +1548239865: New client connected from 172.21.0.1 as mosqpub|9802-heretic (c1, k60, u'user1'). +1548239865: Client mosqpub|9802-heretic disconnected. +1548239865: New connection from 172.21.0.1 on port 1883. +1548239865: New client connected from 172.21.0.1 as mosqpub|9803-heretic (c1, k60, u'user1'). +1548239865: Client mosqpub|9803-heretic disconnected. +1548239866: New connection from 172.21.0.1 on port 1883. +1548239866: New client connected from 172.21.0.1 as mosqpub|9804-heretic (c1, k60, u'user1'). +1548239866: Client mosqpub|9804-heretic disconnected. +1548239866: New connection from 172.21.0.1 on port 1883. +1548239866: New client connected from 172.21.0.1 as mosqpub|9805-heretic (c1, k60, u'user1'). +1548239866: Client mosqpub|9805-heretic disconnected. +1548239867: New connection from 172.21.0.1 on port 1883. +1548239867: New client connected from 172.21.0.1 as mosqpub|9806-heretic (c1, k60, u'user1'). +1548239867: Client mosqpub|9806-heretic disconnected. +1548239867: New connection from 172.21.0.1 on port 1883. +1548239867: New client connected from 172.21.0.1 as mosqpub|9809-heretic (c1, k60, u'user1'). +1548239867: Client mosqpub|9809-heretic disconnected. +1548239868: New connection from 172.21.0.1 on port 1883. +1548239868: New client connected from 172.21.0.1 as mosqpub|9810-heretic (c1, k60, u'user1'). +1548239868: Client mosqpub|9810-heretic disconnected. +1548239868: New connection from 172.21.0.1 on port 1883. +1548239868: New client connected from 172.21.0.1 as mosqpub|9811-heretic (c1, k60, u'user1'). +1548239868: Client mosqpub|9811-heretic disconnected. +1548239869: New connection from 172.21.0.1 on port 1883. +1548239869: New client connected from 172.21.0.1 as mosqpub|9812-heretic (c1, k60, u'user1'). +1548239869: Client mosqpub|9812-heretic disconnected. +1548239869: New connection from 172.21.0.1 on port 1883. +1548239869: New client connected from 172.21.0.1 as mosqpub|9813-heretic (c1, k60, u'user1'). +1548239869: Client mosqpub|9813-heretic disconnected. +1548239870: New connection from 172.21.0.1 on port 1883. +1548239870: New client connected from 172.21.0.1 as mosqpub|9815-heretic (c1, k60, u'user1'). +1548239870: Client mosqpub|9815-heretic disconnected. +1548239870: New connection from 172.21.0.1 on port 1883. +1548239870: New client connected from 172.21.0.1 as mosqpub|9816-heretic (c1, k60, u'user1'). +1548239870: Client mosqpub|9816-heretic disconnected. +1548239871: New connection from 172.21.0.1 on port 1883. +1548239871: New client connected from 172.21.0.1 as mosqpub|9817-heretic (c1, k60, u'user1'). +1548239871: Client mosqpub|9817-heretic disconnected. +1548239871: New connection from 172.21.0.1 on port 1883. +1548239871: New client connected from 172.21.0.1 as mosqpub|9818-heretic (c1, k60, u'user1'). +1548239871: Client mosqpub|9818-heretic disconnected. +1548239872: New connection from 172.21.0.1 on port 1883. +1548239872: New client connected from 172.21.0.1 as mosqpub|9819-heretic (c1, k60, u'user1'). +1548239872: Client mosqpub|9819-heretic disconnected. +1548239872: New connection from 172.21.0.1 on port 1883. +1548239872: New client connected from 172.21.0.1 as mosqpub|9820-heretic (c1, k60, u'user1'). +1548239872: Client mosqpub|9820-heretic disconnected. +1548239873: New connection from 172.21.0.1 on port 1883. +1548239873: New client connected from 172.21.0.1 as mosqpub|9821-heretic (c1, k60, u'user1'). +1548239873: Client mosqpub|9821-heretic disconnected. +1548239873: New connection from 172.21.0.1 on port 1883. +1548239873: New client connected from 172.21.0.1 as mosqpub|9822-heretic (c1, k60, u'user1'). +1548239873: Client mosqpub|9822-heretic disconnected. +1548239874: New connection from 172.21.0.1 on port 1883. +1548239874: New client connected from 172.21.0.1 as mosqpub|9823-heretic (c1, k60, u'user1'). +1548239874: Client mosqpub|9823-heretic disconnected. +1548239874: New connection from 172.21.0.1 on port 1883. +1548239874: New client connected from 172.21.0.1 as mosqpub|9824-heretic (c1, k60, u'user1'). +1548239874: Client mosqpub|9824-heretic disconnected. +1548239875: New connection from 172.21.0.1 on port 1883. +1548239875: New client connected from 172.21.0.1 as mosqpub|9825-heretic (c1, k60, u'user1'). +1548239875: Client mosqpub|9825-heretic disconnected. +1548239875: New connection from 172.21.0.1 on port 1883. +1548239875: New client connected from 172.21.0.1 as mosqpub|9827-heretic (c1, k60, u'user1'). +1548239875: Client mosqpub|9827-heretic disconnected. +1548239876: New connection from 172.21.0.1 on port 1883. +1548239876: New client connected from 172.21.0.1 as mosqpub|9828-heretic (c1, k60, u'user1'). +1548239876: Client mosqpub|9828-heretic disconnected. +1548239876: New connection from 172.21.0.1 on port 1883. +1548239876: New client connected from 172.21.0.1 as mosqpub|9829-heretic (c1, k60, u'user1'). +1548239876: Client mosqpub|9829-heretic disconnected. +1548239877: New connection from 172.21.0.1 on port 1883. +1548239877: New client connected from 172.21.0.1 as mosqpub|9830-heretic (c1, k60, u'user1'). +1548239877: Client mosqpub|9830-heretic disconnected. +1548239878: New connection from 172.21.0.1 on port 1883. +1548239878: New client connected from 172.21.0.1 as mosqpub|9831-heretic (c1, k60, u'user1'). +1548239878: Client mosqpub|9831-heretic disconnected. +1548239878: New connection from 172.21.0.1 on port 1883. +1548239878: New client connected from 172.21.0.1 as mosqpub|9832-heretic (c1, k60, u'user1'). +1548239878: Client mosqpub|9832-heretic disconnected. +1548239879: New connection from 172.21.0.1 on port 1883. +1548239879: New client connected from 172.21.0.1 as mosqpub|9833-heretic (c1, k60, u'user1'). +1548239879: Client mosqpub|9833-heretic disconnected. +1548239879: New connection from 172.21.0.1 on port 1883. +1548239879: New client connected from 172.21.0.1 as mosqpub|9834-heretic (c1, k60, u'user1'). +1548239879: Client mosqpub|9834-heretic disconnected. +1548239880: New connection from 172.21.0.1 on port 1883. +1548239880: New client connected from 172.21.0.1 as mosqpub|9835-heretic (c1, k60, u'user1'). +1548239880: Client mosqpub|9835-heretic disconnected. +1548239880: New connection from 172.21.0.1 on port 1883. +1548239880: New client connected from 172.21.0.1 as mosqpub|9836-heretic (c1, k60, u'user1'). +1548239880: Client mosqpub|9836-heretic disconnected. +1548239881: New connection from 172.21.0.1 on port 1883. +1548239881: New client connected from 172.21.0.1 as mosqpub|9837-heretic (c1, k60, u'user1'). +1548239881: Client mosqpub|9837-heretic disconnected. +1548239881: New connection from 172.21.0.1 on port 1883. +1548239881: New client connected from 172.21.0.1 as mosqpub|9838-heretic (c1, k60, u'user1'). +1548239881: Client mosqpub|9838-heretic disconnected. +1548239882: New connection from 172.21.0.1 on port 1883. +1548239882: New client connected from 172.21.0.1 as mosqpub|9839-heretic (c1, k60, u'user1'). +1548239882: Client mosqpub|9839-heretic disconnected. +1548239882: New connection from 172.21.0.1 on port 1883. +1548239882: New client connected from 172.21.0.1 as mosqpub|9840-heretic (c1, k60, u'user1'). +1548239882: Client mosqpub|9840-heretic disconnected. +1548239883: New connection from 172.21.0.1 on port 1883. +1548239883: New client connected from 172.21.0.1 as mosqpub|9841-heretic (c1, k60, u'user1'). +1548239883: Client mosqpub|9841-heretic disconnected. +1548239883: New connection from 172.21.0.1 on port 1883. +1548239883: New client connected from 172.21.0.1 as mosqpub|9842-heretic (c1, k60, u'user1'). +1548239883: Client mosqpub|9842-heretic disconnected. +1548239884: New connection from 172.21.0.1 on port 1883. +1548239884: New client connected from 172.21.0.1 as mosqpub|9843-heretic (c1, k60, u'user1'). +1548239884: Client mosqpub|9843-heretic disconnected. +1548239884: New connection from 172.21.0.1 on port 1883. +1548239884: New client connected from 172.21.0.1 as mosqpub|9844-heretic (c1, k60, u'user1'). +1548239884: Client mosqpub|9844-heretic disconnected. +1548239885: New connection from 172.21.0.1 on port 1883. +1548239885: New client connected from 172.21.0.1 as mosqpub|9845-heretic (c1, k60, u'user1'). +1548239885: Client mosqpub|9845-heretic disconnected. +1548239885: New connection from 172.21.0.1 on port 1883. +1548239885: New client connected from 172.21.0.1 as mosqpub|9846-heretic (c1, k60, u'user1'). +1548239885: Client mosqpub|9846-heretic disconnected. +1548239886: New connection from 172.21.0.1 on port 1883. +1548239886: New client connected from 172.21.0.1 as mosqpub|9847-heretic (c1, k60, u'user1'). +1548239886: Client mosqpub|9847-heretic disconnected. +1548239886: New connection from 172.21.0.1 on port 1883. +1548239886: New client connected from 172.21.0.1 as mosqpub|9848-heretic (c1, k60, u'user1'). +1548239886: Client mosqpub|9848-heretic disconnected. +1548239887: New connection from 172.21.0.1 on port 1883. +1548239887: New client connected from 172.21.0.1 as mosqpub|9849-heretic (c1, k60, u'user1'). +1548239887: Client mosqpub|9849-heretic disconnected. +1548239887: New connection from 172.21.0.1 on port 1883. +1548239887: New client connected from 172.21.0.1 as mosqpub|9850-heretic (c1, k60, u'user1'). +1548239887: Client mosqpub|9850-heretic disconnected. +1548239888: New connection from 172.21.0.1 on port 1883. +1548239888: New client connected from 172.21.0.1 as mosqpub|9851-heretic (c1, k60, u'user1'). +1548239888: Client mosqpub|9851-heretic disconnected. +1548239888: New connection from 172.21.0.1 on port 1883. +1548239888: New client connected from 172.21.0.1 as mosqpub|9852-heretic (c1, k60, u'user1'). +1548239888: Client mosqpub|9852-heretic disconnected. +1548239889: New connection from 172.21.0.1 on port 1883. +1548239889: New client connected from 172.21.0.1 as mosqpub|9853-heretic (c1, k60, u'user1'). +1548239889: Client mosqpub|9853-heretic disconnected. +1548239889: New connection from 172.21.0.1 on port 1883. +1548239889: New client connected from 172.21.0.1 as mosqpub|9855-heretic (c1, k60, u'user1'). +1548239889: Client mosqpub|9855-heretic disconnected. +1548239890: New connection from 172.21.0.1 on port 1883. +1548239890: New client connected from 172.21.0.1 as mosqpub|9856-heretic (c1, k60, u'user1'). +1548239890: Client mosqpub|9856-heretic disconnected. +1548239890: New connection from 172.21.0.1 on port 1883. +1548239890: New client connected from 172.21.0.1 as mosqpub|9857-heretic (c1, k60, u'user1'). +1548239890: Client mosqpub|9857-heretic disconnected. +1548239891: New connection from 172.21.0.1 on port 1883. +1548239891: New client connected from 172.21.0.1 as mosqpub|9858-heretic (c1, k60, u'user1'). +1548239891: Client mosqpub|9858-heretic disconnected. +1548239891: New connection from 172.21.0.1 on port 1883. +1548239891: New client connected from 172.21.0.1 as mosqpub|9859-heretic (c1, k60, u'user1'). +1548239891: Client mosqpub|9859-heretic disconnected. +1548239892: New connection from 172.21.0.1 on port 1883. +1548239892: New client connected from 172.21.0.1 as mosqpub|9860-heretic (c1, k60, u'user1'). +1548239892: Client mosqpub|9860-heretic disconnected. +1548239892: New connection from 172.21.0.1 on port 1883. +1548239892: New client connected from 172.21.0.1 as mosqpub|9861-heretic (c1, k60, u'user1'). +1548239892: Client mosqpub|9861-heretic disconnected. +1548239893: New connection from 172.21.0.1 on port 1883. +1548239893: New client connected from 172.21.0.1 as mosqpub|9862-heretic (c1, k60, u'user1'). +1548239893: Client mosqpub|9862-heretic disconnected. +1548239893: New connection from 172.21.0.1 on port 1883. +1548239893: New client connected from 172.21.0.1 as mosqpub|9863-heretic (c1, k60, u'user1'). +1548239893: Client mosqpub|9863-heretic disconnected. +1548239894: New connection from 172.21.0.1 on port 1883. +1548239894: New client connected from 172.21.0.1 as mosqpub|9864-heretic (c1, k60, u'user1'). +1548239894: Client mosqpub|9864-heretic disconnected. +1548239894: New connection from 172.21.0.1 on port 1883. +1548239894: New client connected from 172.21.0.1 as mosqpub|9865-heretic (c1, k60, u'user1'). +1548239894: Client mosqpub|9865-heretic disconnected. +1548239895: New connection from 172.21.0.1 on port 1883. +1548239895: New client connected from 172.21.0.1 as mosqpub|9866-heretic (c1, k60, u'user1'). +1548239895: Client mosqpub|9866-heretic disconnected. +1548239895: New connection from 172.21.0.1 on port 1883. +1548239895: New client connected from 172.21.0.1 as mosqpub|9867-heretic (c1, k60, u'user1'). +1548239895: Client mosqpub|9867-heretic disconnected. +1548239896: New connection from 172.21.0.1 on port 1883. +1548239896: New client connected from 172.21.0.1 as mosqpub|9868-heretic (c1, k60, u'user1'). +1548239896: Client mosqpub|9868-heretic disconnected. +1548239896: New connection from 172.21.0.1 on port 1883. +1548239896: New client connected from 172.21.0.1 as mosqpub|9869-heretic (c1, k60, u'user1'). +1548239896: Client mosqpub|9869-heretic disconnected. +1548239897: New connection from 172.21.0.1 on port 1883. +1548239897: New client connected from 172.21.0.1 as mosqpub|9870-heretic (c1, k60, u'user1'). +1548239897: Client mosqpub|9870-heretic disconnected. +1548239897: New connection from 172.21.0.1 on port 1883. +1548239897: New client connected from 172.21.0.1 as mosqpub|9871-heretic (c1, k60, u'user1'). +1548239897: Client mosqpub|9871-heretic disconnected. +1548239898: New connection from 172.21.0.1 on port 1883. +1548239898: New client connected from 172.21.0.1 as mosqpub|9872-heretic (c1, k60, u'user1'). +1548239898: Client mosqpub|9872-heretic disconnected. +1548239898: New connection from 172.21.0.1 on port 1883. +1548239898: New client connected from 172.21.0.1 as mosqpub|9873-heretic (c1, k60, u'user1'). +1548239898: Client mosqpub|9873-heretic disconnected. +1548239899: New connection from 172.21.0.1 on port 1883. +1548239899: New client connected from 172.21.0.1 as mosqpub|9874-heretic (c1, k60, u'user1'). +1548239899: Client mosqpub|9874-heretic disconnected. +1548239899: New connection from 172.21.0.1 on port 1883. +1548239899: New client connected from 172.21.0.1 as mosqpub|9875-heretic (c1, k60, u'user1'). +1548239899: Client mosqpub|9875-heretic disconnected. +1548239900: New connection from 172.21.0.1 on port 1883. +1548239900: New client connected from 172.21.0.1 as mosqpub|9876-heretic (c1, k60, u'user1'). +1548239900: Client mosqpub|9876-heretic disconnected. +1548239900: New connection from 172.21.0.1 on port 1883. +1548239900: New client connected from 172.21.0.1 as mosqpub|9877-heretic (c1, k60, u'user1'). +1548239900: Client mosqpub|9877-heretic disconnected. +1548239901: New connection from 172.21.0.1 on port 1883. +1548239901: New client connected from 172.21.0.1 as mosqpub|9878-heretic (c1, k60, u'user1'). +1548239901: Client mosqpub|9878-heretic disconnected. +1548239901: New connection from 172.21.0.1 on port 1883. +1548239901: New client connected from 172.21.0.1 as mosqpub|9879-heretic (c1, k60, u'user1'). +1548239901: Client mosqpub|9879-heretic disconnected. +1548239902: New connection from 172.21.0.1 on port 1883. +1548239902: New client connected from 172.21.0.1 as mosqpub|9880-heretic (c1, k60, u'user1'). +1548239902: Client mosqpub|9880-heretic disconnected. +1548239902: New connection from 172.21.0.1 on port 1883. +1548239902: New client connected from 172.21.0.1 as mosqpub|9881-heretic (c1, k60, u'user1'). +1548239902: Client mosqpub|9881-heretic disconnected. +1548239903: New connection from 172.21.0.1 on port 1883. +1548239903: New client connected from 172.21.0.1 as mosqpub|9882-heretic (c1, k60, u'user1'). +1548239903: Client mosqpub|9882-heretic disconnected. +1548239903: New connection from 172.21.0.1 on port 1883. +1548239903: New client connected from 172.21.0.1 as mosqpub|9883-heretic (c1, k60, u'user1'). +1548239903: Client mosqpub|9883-heretic disconnected. +1548239904: New connection from 172.21.0.1 on port 1883. +1548239904: New client connected from 172.21.0.1 as mosqpub|9884-heretic (c1, k60, u'user1'). +1548239904: Client mosqpub|9884-heretic disconnected. +1548239904: New connection from 172.21.0.1 on port 1883. +1548239904: New client connected from 172.21.0.1 as mosqpub|9885-heretic (c1, k60, u'user1'). +1548239904: Client mosqpub|9885-heretic disconnected. +1548239905: New connection from 172.21.0.1 on port 1883. +1548239905: New client connected from 172.21.0.1 as mosqpub|9886-heretic (c1, k60, u'user1'). +1548239905: Client mosqpub|9886-heretic disconnected. +1548239905: New connection from 172.21.0.1 on port 1883. +1548239905: New client connected from 172.21.0.1 as mosqpub|9887-heretic (c1, k60, u'user1'). +1548239905: Client mosqpub|9887-heretic disconnected. +1548239906: New connection from 172.21.0.1 on port 1883. +1548239906: New client connected from 172.21.0.1 as mosqpub|9888-heretic (c1, k60, u'user1'). +1548239906: Client mosqpub|9888-heretic disconnected. +1548239906: New connection from 172.21.0.1 on port 1883. +1548239906: New client connected from 172.21.0.1 as mosqpub|9889-heretic (c1, k60, u'user1'). +1548239906: Client mosqpub|9889-heretic disconnected. +1548239907: New connection from 172.21.0.1 on port 1883. +1548239907: New client connected from 172.21.0.1 as mosqpub|9890-heretic (c1, k60, u'user1'). +1548239907: Client mosqpub|9890-heretic disconnected. +1548239907: New connection from 172.21.0.1 on port 1883. +1548239907: New client connected from 172.21.0.1 as mosqpub|9891-heretic (c1, k60, u'user1'). +1548239907: Client mosqpub|9891-heretic disconnected. +1548239908: New connection from 172.21.0.1 on port 1883. +1548239908: New client connected from 172.21.0.1 as mosqpub|9892-heretic (c1, k60, u'user1'). +1548239908: Client mosqpub|9892-heretic disconnected. +1548239908: New connection from 172.21.0.1 on port 1883. +1548239908: New client connected from 172.21.0.1 as mosqpub|9893-heretic (c1, k60, u'user1'). +1548239908: Client mosqpub|9893-heretic disconnected. +1548239909: New connection from 172.21.0.1 on port 1883. +1548239909: New client connected from 172.21.0.1 as mosqpub|9894-heretic (c1, k60, u'user1'). +1548239909: Client mosqpub|9894-heretic disconnected. +1548239909: New connection from 172.21.0.1 on port 1883. +1548239909: New client connected from 172.21.0.1 as mosqpub|9895-heretic (c1, k60, u'user1'). +1548239909: Client mosqpub|9895-heretic disconnected. +1548239910: New connection from 172.21.0.1 on port 1883. +1548239910: New client connected from 172.21.0.1 as mosqpub|9896-heretic (c1, k60, u'user1'). +1548239910: Client mosqpub|9896-heretic disconnected. +1548239910: New connection from 172.21.0.1 on port 1883. +1548239910: New client connected from 172.21.0.1 as mosqpub|9897-heretic (c1, k60, u'user1'). +1548239910: Client mosqpub|9897-heretic disconnected. +1548239911: New connection from 172.21.0.1 on port 1883. +1548239911: New client connected from 172.21.0.1 as mosqpub|9898-heretic (c1, k60, u'user1'). +1548239911: Client mosqpub|9898-heretic disconnected. +1548239911: New connection from 172.21.0.1 on port 1883. +1548239911: New client connected from 172.21.0.1 as mosqpub|9899-heretic (c1, k60, u'user1'). +1548239911: Client mosqpub|9899-heretic disconnected. +1548239912: New connection from 172.21.0.1 on port 1883. +1548239912: New client connected from 172.21.0.1 as mosqpub|9901-heretic (c1, k60, u'user1'). +1548239912: Client mosqpub|9901-heretic disconnected. +1548239912: New connection from 172.21.0.1 on port 1883. +1548239912: New client connected from 172.21.0.1 as mosqpub|9902-heretic (c1, k60, u'user1'). +1548239912: Client mosqpub|9902-heretic disconnected. +1548239913: New connection from 172.21.0.1 on port 1883. +1548239913: New client connected from 172.21.0.1 as mosqpub|9903-heretic (c1, k60, u'user1'). +1548239913: Client mosqpub|9903-heretic disconnected. +1548239913: New connection from 172.21.0.1 on port 1883. +1548239913: New client connected from 172.21.0.1 as mosqpub|9904-heretic (c1, k60, u'user1'). +1548239913: Client mosqpub|9904-heretic disconnected. +1548239914: New connection from 172.21.0.1 on port 1883. +1548239914: New client connected from 172.21.0.1 as mosqpub|9905-heretic (c1, k60, u'user1'). +1548239914: Client mosqpub|9905-heretic disconnected. +1548239914: New connection from 172.21.0.1 on port 1883. +1548239914: New client connected from 172.21.0.1 as mosqpub|9906-heretic (c1, k60, u'user1'). +1548239914: Client mosqpub|9906-heretic disconnected. +1548239915: New connection from 172.21.0.1 on port 1883. +1548239915: New client connected from 172.21.0.1 as mosqpub|9907-heretic (c1, k60, u'user1'). +1548239915: Client mosqpub|9907-heretic disconnected. +1548239915: New connection from 172.21.0.1 on port 1883. +1548239915: New client connected from 172.21.0.1 as mosqpub|9908-heretic (c1, k60, u'user1'). +1548239915: Client mosqpub|9908-heretic disconnected. +1548239916: New connection from 172.21.0.1 on port 1883. +1548239916: New client connected from 172.21.0.1 as mosqpub|9909-heretic (c1, k60, u'user1'). +1548239916: Client mosqpub|9909-heretic disconnected. +1548239917: New connection from 172.21.0.1 on port 1883. +1548239917: New client connected from 172.21.0.1 as mosqpub|9910-heretic (c1, k60, u'user1'). +1548239917: Client mosqpub|9910-heretic disconnected. +1548239917: New connection from 172.21.0.1 on port 1883. +1548239917: New client connected from 172.21.0.1 as mosqpub|9911-heretic (c1, k60, u'user1'). +1548239917: Client mosqpub|9911-heretic disconnected. +1548239918: New connection from 172.21.0.1 on port 1883. +1548239918: New client connected from 172.21.0.1 as mosqpub|9912-heretic (c1, k60, u'user1'). +1548239918: Client mosqpub|9912-heretic disconnected. +1548239918: New connection from 172.21.0.1 on port 1883. +1548239918: New client connected from 172.21.0.1 as mosqpub|9913-heretic (c1, k60, u'user1'). +1548239918: Client mosqpub|9913-heretic disconnected. +1548239919: New connection from 172.21.0.1 on port 1883. +1548239919: New client connected from 172.21.0.1 as mosqpub|9914-heretic (c1, k60, u'user1'). +1548239919: Client mosqpub|9914-heretic disconnected. +1548239919: New connection from 172.21.0.1 on port 1883. +1548239919: New client connected from 172.21.0.1 as mosqpub|9915-heretic (c1, k60, u'user1'). +1548239919: Client mosqpub|9915-heretic disconnected. +1548239920: New connection from 172.21.0.1 on port 1883. +1548239920: New client connected from 172.21.0.1 as mosqpub|9916-heretic (c1, k60, u'user1'). +1548239920: Client mosqpub|9916-heretic disconnected. +1548239920: New connection from 172.21.0.1 on port 1883. +1548239920: New client connected from 172.21.0.1 as mosqpub|9917-heretic (c1, k60, u'user1'). +1548239920: Client mosqpub|9917-heretic disconnected. +1548239921: New connection from 172.21.0.1 on port 1883. +1548239921: New client connected from 172.21.0.1 as mosqpub|9918-heretic (c1, k60, u'user1'). +1548239921: Client mosqpub|9918-heretic disconnected. +1548239921: New connection from 172.21.0.1 on port 1883. +1548239921: New client connected from 172.21.0.1 as mosqpub|9919-heretic (c1, k60, u'user1'). +1548239921: Client mosqpub|9919-heretic disconnected. +1548239922: New connection from 172.21.0.1 on port 1883. +1548239922: New client connected from 172.21.0.1 as mosqpub|9920-heretic (c1, k60, u'user1'). +1548239922: Client mosqpub|9920-heretic disconnected. +1548239922: New connection from 172.21.0.1 on port 1883. +1548239922: New client connected from 172.21.0.1 as mosqpub|9924-heretic (c1, k60, u'user1'). +1548239922: Client mosqpub|9924-heretic disconnected. +1548239923: New connection from 172.21.0.1 on port 1883. +1548239923: New client connected from 172.21.0.1 as mosqpub|9925-heretic (c1, k60, u'user1'). +1548239923: Client mosqpub|9925-heretic disconnected. +1548239923: New connection from 172.21.0.1 on port 1883. +1548239923: New client connected from 172.21.0.1 as mosqpub|9926-heretic (c1, k60, u'user1'). +1548239923: Client mosqpub|9926-heretic disconnected. +1548239924: New connection from 172.21.0.1 on port 1883. +1548239924: New client connected from 172.21.0.1 as mosqpub|9927-heretic (c1, k60, u'user1'). +1548239924: Client mosqpub|9927-heretic disconnected. +1548239924: New connection from 172.21.0.1 on port 1883. +1548239924: New client connected from 172.21.0.1 as mosqpub|9928-heretic (c1, k60, u'user1'). +1548239924: Client mosqpub|9928-heretic disconnected. +1548239925: New connection from 172.21.0.1 on port 1883. +1548239925: New client connected from 172.21.0.1 as mosqpub|9929-heretic (c1, k60, u'user1'). +1548239925: Client mosqpub|9929-heretic disconnected. +1548239925: New connection from 172.21.0.1 on port 1883. +1548239925: New client connected from 172.21.0.1 as mosqpub|9931-heretic (c1, k60, u'user1'). +1548239925: Client mosqpub|9931-heretic disconnected. +1548239926: New connection from 172.21.0.1 on port 1883. +1548239926: New client connected from 172.21.0.1 as mosqpub|9932-heretic (c1, k60, u'user1'). +1548239926: Client mosqpub|9932-heretic disconnected. +1548239926: New connection from 172.21.0.1 on port 1883. +1548239926: New client connected from 172.21.0.1 as mosqpub|9933-heretic (c1, k60, u'user1'). +1548239926: Client mosqpub|9933-heretic disconnected. +1548239927: New connection from 172.21.0.1 on port 1883. +1548239927: New client connected from 172.21.0.1 as mosqpub|9934-heretic (c1, k60, u'user1'). +1548239927: Client mosqpub|9934-heretic disconnected. +1548239927: New connection from 172.21.0.1 on port 1883. +1548239927: New client connected from 172.21.0.1 as mosqpub|9935-heretic (c1, k60, u'user1'). +1548239927: Client mosqpub|9935-heretic disconnected. +1548239928: New connection from 172.21.0.1 on port 1883. +1548239928: New client connected from 172.21.0.1 as mosqpub|9936-heretic (c1, k60, u'user1'). +1548239928: Client mosqpub|9936-heretic disconnected. +1548239928: New connection from 172.21.0.1 on port 1883. +1548239928: New client connected from 172.21.0.1 as mosqpub|9937-heretic (c1, k60, u'user1'). +1548239928: Client mosqpub|9937-heretic disconnected. +1548239929: New connection from 172.21.0.1 on port 1883. +1548239929: New client connected from 172.21.0.1 as mosqpub|9938-heretic (c1, k60, u'user1'). +1548239929: Client mosqpub|9938-heretic disconnected. +1548239929: New connection from 172.21.0.1 on port 1883. +1548239929: New client connected from 172.21.0.1 as mosqpub|9939-heretic (c1, k60, u'user1'). +1548239929: Client mosqpub|9939-heretic disconnected. +1548239930: New connection from 172.21.0.1 on port 1883. +1548239930: New client connected from 172.21.0.1 as mosqpub|9940-heretic (c1, k60, u'user1'). +1548239930: Client mosqpub|9940-heretic disconnected. +1548239930: New connection from 172.21.0.1 on port 1883. +1548239930: New client connected from 172.21.0.1 as mosqpub|9941-heretic (c1, k60, u'user1'). +1548239930: Client mosqpub|9941-heretic disconnected. +1548239931: New connection from 172.21.0.1 on port 1883. +1548239931: New client connected from 172.21.0.1 as mosqpub|9942-heretic (c1, k60, u'user1'). +1548239931: Client mosqpub|9942-heretic disconnected. +1548239931: New connection from 172.21.0.1 on port 1883. +1548239931: New client connected from 172.21.0.1 as mosqpub|9943-heretic (c1, k60, u'user1'). +1548239931: Client mosqpub|9943-heretic disconnected. +1548239932: New connection from 172.21.0.1 on port 1883. +1548239932: New client connected from 172.21.0.1 as mosqpub|9944-heretic (c1, k60, u'user1'). +1548239932: Client mosqpub|9944-heretic disconnected. +1548239932: New connection from 172.21.0.1 on port 1883. +1548239932: New client connected from 172.21.0.1 as mosqpub|9945-heretic (c1, k60, u'user1'). +1548239932: Client mosqpub|9945-heretic disconnected. +1548239933: New connection from 172.21.0.1 on port 1883. +1548239933: New client connected from 172.21.0.1 as mosqpub|9946-heretic (c1, k60, u'user1'). +1548239933: Client mosqpub|9946-heretic disconnected. +1548239933: New connection from 172.21.0.1 on port 1883. +1548239933: New client connected from 172.21.0.1 as mosqpub|9947-heretic (c1, k60, u'user1'). +1548239933: Client mosqpub|9947-heretic disconnected. +1548239934: New connection from 172.21.0.1 on port 1883. +1548239934: New client connected from 172.21.0.1 as mosqpub|9948-heretic (c1, k60, u'user1'). +1548239934: Client mosqpub|9948-heretic disconnected. +1548239934: New connection from 172.21.0.1 on port 1883. +1548239934: New client connected from 172.21.0.1 as mosqpub|9949-heretic (c1, k60, u'user1'). +1548239934: Client mosqpub|9949-heretic disconnected. +1548239935: New connection from 172.21.0.1 on port 1883. +1548239935: New client connected from 172.21.0.1 as mosqpub|9950-heretic (c1, k60, u'user1'). +1548239935: Client mosqpub|9950-heretic disconnected. +1548239935: New connection from 172.21.0.1 on port 1883. +1548239935: New client connected from 172.21.0.1 as mosqpub|9951-heretic (c1, k60, u'user1'). +1548239935: Client mosqpub|9951-heretic disconnected. +1548239936: New connection from 172.21.0.1 on port 1883. +1548239936: New client connected from 172.21.0.1 as mosqpub|9952-heretic (c1, k60, u'user1'). +1548239936: Client mosqpub|9952-heretic disconnected. +1548239936: New connection from 172.21.0.1 on port 1883. +1548239936: New client connected from 172.21.0.1 as mosqpub|9953-heretic (c1, k60, u'user1'). +1548239936: Client mosqpub|9953-heretic disconnected. +1548239937: New connection from 172.21.0.1 on port 1883. +1548239937: New client connected from 172.21.0.1 as mosqpub|9954-heretic (c1, k60, u'user1'). +1548239937: Client mosqpub|9954-heretic disconnected. +1548239937: New connection from 172.21.0.1 on port 1883. +1548239937: New client connected from 172.21.0.1 as mosqpub|9955-heretic (c1, k60, u'user1'). +1548239937: Client mosqpub|9955-heretic disconnected. +1548239938: New connection from 172.21.0.1 on port 1883. +1548239938: New client connected from 172.21.0.1 as mosqpub|9956-heretic (c1, k60, u'user1'). +1548239938: Client mosqpub|9956-heretic disconnected. +1548239938: New connection from 172.21.0.1 on port 1883. +1548239938: New client connected from 172.21.0.1 as mosqpub|9957-heretic (c1, k60, u'user1'). +1548239938: Client mosqpub|9957-heretic disconnected. +1548239939: New connection from 172.21.0.1 on port 1883. +1548239939: New client connected from 172.21.0.1 as mosqpub|9960-heretic (c1, k60, u'user1'). +1548239939: Client mosqpub|9960-heretic disconnected. +1548239939: New connection from 172.21.0.1 on port 1883. +1548239939: New client connected from 172.21.0.1 as mosqpub|9961-heretic (c1, k60, u'user1'). +1548239939: Client mosqpub|9961-heretic disconnected. +1548239940: New connection from 172.21.0.1 on port 1883. +1548239940: New client connected from 172.21.0.1 as mosqpub|9962-heretic (c1, k60, u'user1'). +1548239940: Client mosqpub|9962-heretic disconnected. +1548239940: New connection from 172.21.0.1 on port 1883. +1548239940: New client connected from 172.21.0.1 as mosqpub|9963-heretic (c1, k60, u'user1'). +1548239940: Client mosqpub|9963-heretic disconnected. +1548239941: New connection from 172.21.0.1 on port 1883. +1548239941: New client connected from 172.21.0.1 as mosqpub|9964-heretic (c1, k60, u'user1'). +1548239941: Client mosqpub|9964-heretic disconnected. +1548239941: New connection from 172.21.0.1 on port 1883. +1548239941: New client connected from 172.21.0.1 as mosqpub|9965-heretic (c1, k60, u'user1'). +1548239941: Client mosqpub|9965-heretic disconnected. +1548239942: New connection from 172.21.0.1 on port 1883. +1548239942: New client connected from 172.21.0.1 as mosqpub|9966-heretic (c1, k60, u'user1'). +1548239942: Client mosqpub|9966-heretic disconnected. +1548239942: New connection from 172.21.0.1 on port 1883. +1548239942: New client connected from 172.21.0.1 as mosqpub|9967-heretic (c1, k60, u'user1'). +1548239942: Client mosqpub|9967-heretic disconnected. +1548239943: New connection from 172.21.0.1 on port 1883. +1548239943: New client connected from 172.21.0.1 as mosqpub|9968-heretic (c1, k60, u'user1'). +1548239943: Client mosqpub|9968-heretic disconnected. +1548239943: New connection from 172.21.0.1 on port 1883. +1548239943: New client connected from 172.21.0.1 as mosqpub|9969-heretic (c1, k60, u'user1'). +1548239943: Client mosqpub|9969-heretic disconnected. +1548239944: New connection from 172.21.0.1 on port 1883. +1548239944: New client connected from 172.21.0.1 as mosqpub|9970-heretic (c1, k60, u'user1'). +1548239944: Client mosqpub|9970-heretic disconnected. +1548239944: New connection from 172.21.0.1 on port 1883. +1548239944: New client connected from 172.21.0.1 as mosqpub|9971-heretic (c1, k60, u'user1'). +1548239944: Client mosqpub|9971-heretic disconnected. +1548239945: New connection from 172.21.0.1 on port 1883. +1548239945: New client connected from 172.21.0.1 as mosqpub|9972-heretic (c1, k60, u'user1'). +1548239945: Client mosqpub|9972-heretic disconnected. +1548239945: New connection from 172.21.0.1 on port 1883. +1548239945: New client connected from 172.21.0.1 as mosqpub|9973-heretic (c1, k60, u'user1'). +1548239945: Client mosqpub|9973-heretic disconnected. +1548239946: New connection from 172.21.0.1 on port 1883. +1548239946: New client connected from 172.21.0.1 as mosqpub|9974-heretic (c1, k60, u'user1'). +1548239946: Client mosqpub|9974-heretic disconnected. +1548239946: New connection from 172.21.0.1 on port 1883. +1548239946: New client connected from 172.21.0.1 as mosqpub|9975-heretic (c1, k60, u'user1'). +1548239946: Client mosqpub|9975-heretic disconnected. +1548239947: New connection from 172.21.0.1 on port 1883. +1548239947: New client connected from 172.21.0.1 as mosqpub|9976-heretic (c1, k60, u'user1'). +1548239947: Client mosqpub|9976-heretic disconnected. +1548239947: New connection from 172.21.0.1 on port 1883. +1548239947: New client connected from 172.21.0.1 as mosqpub|9977-heretic (c1, k60, u'user1'). +1548239947: Client mosqpub|9977-heretic disconnected. +1548239948: New connection from 172.21.0.1 on port 1883. +1548239948: New client connected from 172.21.0.1 as mosqpub|9978-heretic (c1, k60, u'user1'). +1548239948: Client mosqpub|9978-heretic disconnected. +1548239948: New connection from 172.21.0.1 on port 1883. +1548239948: New client connected from 172.21.0.1 as mosqpub|9979-heretic (c1, k60, u'user1'). +1548239948: Client mosqpub|9979-heretic disconnected. +1548239949: New connection from 172.21.0.1 on port 1883. +1548239949: New client connected from 172.21.0.1 as mosqpub|9980-heretic (c1, k60, u'user1'). +1548239949: Client mosqpub|9980-heretic disconnected. +1548239949: New connection from 172.21.0.1 on port 1883. +1548239949: New client connected from 172.21.0.1 as mosqpub|9981-heretic (c1, k60, u'user1'). +1548239949: Client mosqpub|9981-heretic disconnected. +1548239950: New connection from 172.21.0.1 on port 1883. +1548239950: New client connected from 172.21.0.1 as mosqpub|9982-heretic (c1, k60, u'user1'). +1548239950: Client mosqpub|9982-heretic disconnected. +1548239950: New connection from 172.21.0.1 on port 1883. +1548239950: New client connected from 172.21.0.1 as mosqpub|9983-heretic (c1, k60, u'user1'). +1548239950: Client mosqpub|9983-heretic disconnected. +1548239951: New connection from 172.21.0.1 on port 1883. +1548239951: New client connected from 172.21.0.1 as mosqpub|9984-heretic (c1, k60, u'user1'). +1548239951: Client mosqpub|9984-heretic disconnected. +1548239951: New connection from 172.21.0.1 on port 1883. +1548239951: New client connected from 172.21.0.1 as mosqpub|9985-heretic (c1, k60, u'user1'). +1548239951: Client mosqpub|9985-heretic disconnected. +1548239952: New connection from 172.21.0.1 on port 1883. +1548239952: New client connected from 172.21.0.1 as mosqpub|9986-heretic (c1, k60, u'user1'). +1548239952: Client mosqpub|9986-heretic disconnected. +1548239952: New connection from 172.21.0.1 on port 1883. +1548239952: New client connected from 172.21.0.1 as mosqpub|9987-heretic (c1, k60, u'user1'). +1548239952: Client mosqpub|9987-heretic disconnected. +1548239953: New connection from 172.21.0.1 on port 1883. +1548239953: New client connected from 172.21.0.1 as mosqpub|9988-heretic (c1, k60, u'user1'). +1548239953: Client mosqpub|9988-heretic disconnected. +1548239953: New connection from 172.21.0.1 on port 1883. +1548239953: New client connected from 172.21.0.1 as mosqpub|9989-heretic (c1, k60, u'user1'). +1548239953: Client mosqpub|9989-heretic disconnected. +1548239954: New connection from 172.21.0.1 on port 1883. +1548239954: New client connected from 172.21.0.1 as mosqpub|9990-heretic (c1, k60, u'user1'). +1548239954: Client mosqpub|9990-heretic disconnected. +1548239954: New connection from 172.21.0.1 on port 1883. +1548239954: New client connected from 172.21.0.1 as mosqpub|9991-heretic (c1, k60, u'user1'). +1548239954: Client mosqpub|9991-heretic disconnected. +1548239955: New connection from 172.21.0.1 on port 1883. +1548239955: New client connected from 172.21.0.1 as mosqpub|9992-heretic (c1, k60, u'user1'). +1548239955: Client mosqpub|9992-heretic disconnected. +1548239955: New connection from 172.21.0.1 on port 1883. +1548239955: New client connected from 172.21.0.1 as mosqpub|9993-heretic (c1, k60, u'user1'). +1548239955: Client mosqpub|9993-heretic disconnected. +1548239956: New connection from 172.21.0.1 on port 1883. +1548239956: New client connected from 172.21.0.1 as mosqpub|9994-heretic (c1, k60, u'user1'). +1548239956: Client mosqpub|9994-heretic disconnected. +1548239957: New connection from 172.21.0.1 on port 1883. +1548239957: New client connected from 172.21.0.1 as mosqpub|9995-heretic (c1, k60, u'user1'). +1548239957: Client mosqpub|9995-heretic disconnected. +1548239957: New connection from 172.21.0.1 on port 1883. +1548239957: New client connected from 172.21.0.1 as mosqpub|9996-heretic (c1, k60, u'user1'). +1548239957: Client mosqpub|9996-heretic disconnected. +1548239958: New connection from 172.21.0.1 on port 1883. +1548239958: New client connected from 172.21.0.1 as mosqpub|9997-heretic (c1, k60, u'user1'). +1548239958: Client mosqpub|9997-heretic disconnected. +1548239958: New connection from 172.21.0.1 on port 1883. +1548239958: New client connected from 172.21.0.1 as mosqpub|9998-heretic (c1, k60, u'user1'). +1548239958: Client mosqpub|9998-heretic disconnected. +1548239959: New connection from 172.21.0.1 on port 1883. +1548239959: New client connected from 172.21.0.1 as mosqpub|9999-heretic (c1, k60, u'user1'). +1548239959: Client mosqpub|9999-heretic disconnected. +1548239959: New connection from 172.21.0.1 on port 1883. +1548239959: New client connected from 172.21.0.1 as mosqpub|10000-heretic (c1, k60, u'user1'). +1548239959: Client mosqpub|10000-heretic disconnected. +1548239960: New connection from 172.21.0.1 on port 1883. +1548239960: New client connected from 172.21.0.1 as mosqpub|10001-heretic (c1, k60, u'user1'). +1548239960: Client mosqpub|10001-heretic disconnected. +1548239960: New connection from 172.21.0.1 on port 1883. +1548239960: New client connected from 172.21.0.1 as mosqpub|10002-heretic (c1, k60, u'user1'). +1548239960: Client mosqpub|10002-heretic disconnected. +1548239961: New connection from 172.21.0.1 on port 1883. +1548239961: New client connected from 172.21.0.1 as mosqpub|10003-heretic (c1, k60, u'user1'). +1548239961: Client mosqpub|10003-heretic disconnected. +1548239961: New connection from 172.21.0.1 on port 1883. +1548239961: New client connected from 172.21.0.1 as mosqpub|10004-heretic (c1, k60, u'user1'). +1548239961: Client mosqpub|10004-heretic disconnected. +1548239962: New connection from 172.21.0.1 on port 1883. +1548239962: New client connected from 172.21.0.1 as mosqpub|10005-heretic (c1, k60, u'user1'). +1548239962: Client mosqpub|10005-heretic disconnected. +1548239962: New connection from 172.21.0.1 on port 1883. +1548239962: New client connected from 172.21.0.1 as mosqpub|10006-heretic (c1, k60, u'user1'). +1548239962: Client mosqpub|10006-heretic disconnected. +1548239963: New connection from 172.21.0.1 on port 1883. +1548239963: New client connected from 172.21.0.1 as mosqpub|10007-heretic (c1, k60, u'user1'). +1548239963: Client mosqpub|10007-heretic disconnected. +1548239963: New connection from 172.21.0.1 on port 1883. +1548239963: New client connected from 172.21.0.1 as mosqpub|10008-heretic (c1, k60, u'user1'). +1548239963: Client mosqpub|10008-heretic disconnected. +1548239964: New connection from 172.21.0.1 on port 1883. +1548239964: New client connected from 172.21.0.1 as mosqpub|10009-heretic (c1, k60, u'user1'). +1548239964: Client mosqpub|10009-heretic disconnected. +1548239964: New connection from 172.21.0.1 on port 1883. +1548239964: New client connected from 172.21.0.1 as mosqpub|10010-heretic (c1, k60, u'user1'). +1548239964: Client mosqpub|10010-heretic disconnected. +1548239965: New connection from 172.21.0.1 on port 1883. +1548239965: New client connected from 172.21.0.1 as mosqpub|10014-heretic (c1, k60, u'user1'). +1548239965: Client mosqpub|10014-heretic disconnected. +1548239965: New connection from 172.21.0.1 on port 1883. +1548239965: New client connected from 172.21.0.1 as mosqpub|10015-heretic (c1, k60, u'user1'). +1548239965: Client mosqpub|10015-heretic disconnected. +1548239966: New connection from 172.21.0.1 on port 1883. +1548239966: New client connected from 172.21.0.1 as mosqpub|10016-heretic (c1, k60, u'user1'). +1548239966: Client mosqpub|10016-heretic disconnected. +1548239966: New connection from 172.21.0.1 on port 1883. +1548239966: New client connected from 172.21.0.1 as mosqpub|10018-heretic (c1, k60, u'user1'). +1548239966: Client mosqpub|10018-heretic disconnected. +1548239967: New connection from 172.21.0.1 on port 1883. +1548239967: New client connected from 172.21.0.1 as mosqpub|10019-heretic (c1, k60, u'user1'). +1548239967: Client mosqpub|10019-heretic disconnected. +1548239967: New connection from 172.21.0.1 on port 1883. +1548239967: New client connected from 172.21.0.1 as mosqpub|10020-heretic (c1, k60, u'user1'). +1548239967: Client mosqpub|10020-heretic disconnected. +1548239968: New connection from 172.21.0.1 on port 1883. +1548239968: New client connected from 172.21.0.1 as mosqpub|10022-heretic (c1, k60, u'user1'). +1548239968: Client mosqpub|10022-heretic disconnected. +1548239968: New connection from 172.21.0.1 on port 1883. +1548239968: New client connected from 172.21.0.1 as mosqpub|10023-heretic (c1, k60, u'user1'). +1548239968: Client mosqpub|10023-heretic disconnected. +1548239969: New connection from 172.21.0.1 on port 1883. +1548239969: New client connected from 172.21.0.1 as mosqpub|10024-heretic (c1, k60, u'user1'). +1548239969: Client mosqpub|10024-heretic disconnected. +1548239969: New connection from 172.21.0.1 on port 1883. +1548239969: New client connected from 172.21.0.1 as mosqpub|10025-heretic (c1, k60, u'user1'). +1548239969: Client mosqpub|10025-heretic disconnected. +1548239970: New connection from 172.21.0.1 on port 1883. +1548239970: New client connected from 172.21.0.1 as mosqpub|10026-heretic (c1, k60, u'user1'). +1548239970: Client mosqpub|10026-heretic disconnected. +1548239970: New connection from 172.21.0.1 on port 1883. +1548239970: New client connected from 172.21.0.1 as mosqpub|10027-heretic (c1, k60, u'user1'). +1548239970: Client mosqpub|10027-heretic disconnected. +1548239971: New connection from 172.21.0.1 on port 1883. +1548239971: New client connected from 172.21.0.1 as mosqpub|10028-heretic (c1, k60, u'user1'). +1548239971: Client mosqpub|10028-heretic disconnected. +1548239971: New connection from 172.21.0.1 on port 1883. +1548239971: New client connected from 172.21.0.1 as mosqpub|10029-heretic (c1, k60, u'user1'). +1548239971: Client mosqpub|10029-heretic disconnected. +1548239972: New connection from 172.21.0.1 on port 1883. +1548239972: New client connected from 172.21.0.1 as mosqpub|10030-heretic (c1, k60, u'user1'). +1548239972: Client mosqpub|10030-heretic disconnected. +1548239972: New connection from 172.21.0.1 on port 1883. +1548239972: New client connected from 172.21.0.1 as mosqpub|10031-heretic (c1, k60, u'user1'). +1548239972: Client mosqpub|10031-heretic disconnected. +1548239973: New connection from 172.21.0.1 on port 1883. +1548239973: New client connected from 172.21.0.1 as mosqpub|10032-heretic (c1, k60, u'user1'). +1548239973: Client mosqpub|10032-heretic disconnected. +1548239973: New connection from 172.21.0.1 on port 1883. +1548239973: New client connected from 172.21.0.1 as mosqpub|10033-heretic (c1, k60, u'user1'). +1548239973: Client mosqpub|10033-heretic disconnected. +1548239974: New connection from 172.21.0.1 on port 1883. +1548239974: New client connected from 172.21.0.1 as mosqpub|10034-heretic (c1, k60, u'user1'). +1548239974: Client mosqpub|10034-heretic disconnected. +1548239974: New connection from 172.21.0.1 on port 1883. +1548239974: New client connected from 172.21.0.1 as mosqpub|10035-heretic (c1, k60, u'user1'). +1548239974: Client mosqpub|10035-heretic disconnected. +1548239975: New connection from 172.21.0.1 on port 1883. +1548239975: New client connected from 172.21.0.1 as mosqpub|10036-heretic (c1, k60, u'user1'). +1548239975: Client mosqpub|10036-heretic disconnected. +1548239975: New connection from 172.21.0.1 on port 1883. +1548239975: New client connected from 172.21.0.1 as mosqpub|10037-heretic (c1, k60, u'user1'). +1548239975: Client mosqpub|10037-heretic disconnected. +1548239976: New connection from 172.21.0.1 on port 1883. +1548239976: New client connected from 172.21.0.1 as mosqpub|10038-heretic (c1, k60, u'user1'). +1548239976: Client mosqpub|10038-heretic disconnected. +1548239976: New connection from 172.21.0.1 on port 1883. +1548239976: New client connected from 172.21.0.1 as mosqpub|10039-heretic (c1, k60, u'user1'). +1548239976: Client mosqpub|10039-heretic disconnected. +1548239977: New connection from 172.21.0.1 on port 1883. +1548239977: New client connected from 172.21.0.1 as mosqpub|10041-heretic (c1, k60, u'user1'). +1548239977: Client mosqpub|10041-heretic disconnected. +1548239977: New connection from 172.21.0.1 on port 1883. +1548239977: New client connected from 172.21.0.1 as mosqpub|10042-heretic (c1, k60, u'user1'). +1548239977: Client mosqpub|10042-heretic disconnected. +1548239978: New connection from 172.21.0.1 on port 1883. +1548239978: New client connected from 172.21.0.1 as mosqpub|10043-heretic (c1, k60, u'user1'). +1548239978: Client mosqpub|10043-heretic disconnected. +1548239978: New connection from 172.21.0.1 on port 1883. +1548239978: New client connected from 172.21.0.1 as mosqpub|10044-heretic (c1, k60, u'user1'). +1548239978: Client mosqpub|10044-heretic disconnected. +1548239979: New connection from 172.21.0.1 on port 1883. +1548239979: New client connected from 172.21.0.1 as mosqpub|10045-heretic (c1, k60, u'user1'). +1548239979: Client mosqpub|10045-heretic disconnected. +1548239979: New connection from 172.21.0.1 on port 1883. +1548239979: New client connected from 172.21.0.1 as mosqpub|10046-heretic (c1, k60, u'user1'). +1548239979: Client mosqpub|10046-heretic disconnected. +1548239980: New connection from 172.21.0.1 on port 1883. +1548239980: New client connected from 172.21.0.1 as mosqpub|10047-heretic (c1, k60, u'user1'). +1548239980: Client mosqpub|10047-heretic disconnected. +1548239980: New connection from 172.21.0.1 on port 1883. +1548239980: New client connected from 172.21.0.1 as mosqpub|10048-heretic (c1, k60, u'user1'). +1548239980: Client mosqpub|10048-heretic disconnected. +1548239981: New connection from 172.21.0.1 on port 1883. +1548239981: New client connected from 172.21.0.1 as mosqpub|10049-heretic (c1, k60, u'user1'). +1548239981: Client mosqpub|10049-heretic disconnected. +1548239981: New connection from 172.21.0.1 on port 1883. +1548239981: New client connected from 172.21.0.1 as mosqpub|10050-heretic (c1, k60, u'user1'). +1548239981: Client mosqpub|10050-heretic disconnected. +1548239982: New connection from 172.21.0.1 on port 1883. +1548239982: New client connected from 172.21.0.1 as mosqpub|10051-heretic (c1, k60, u'user1'). +1548239982: Client mosqpub|10051-heretic disconnected. +1548239982: New connection from 172.21.0.1 on port 1883. +1548239982: New client connected from 172.21.0.1 as mosqpub|10052-heretic (c1, k60, u'user1'). +1548239982: Client mosqpub|10052-heretic disconnected. +1548239983: New connection from 172.21.0.1 on port 1883. +1548239983: New client connected from 172.21.0.1 as mosqpub|10053-heretic (c1, k60, u'user1'). +1548239983: Client mosqpub|10053-heretic disconnected. +1548239983: New connection from 172.21.0.1 on port 1883. +1548239983: New client connected from 172.21.0.1 as mosqpub|10054-heretic (c1, k60, u'user1'). +1548239983: Client mosqpub|10054-heretic disconnected. +1548239984: New connection from 172.21.0.1 on port 1883. +1548239984: New client connected from 172.21.0.1 as mosqpub|10055-heretic (c1, k60, u'user1'). +1548239984: Client mosqpub|10055-heretic disconnected. +1548239984: New connection from 172.21.0.1 on port 1883. +1548239984: New client connected from 172.21.0.1 as mosqpub|10056-heretic (c1, k60, u'user1'). +1548239984: Client mosqpub|10056-heretic disconnected. +1548239985: New connection from 172.21.0.1 on port 1883. +1548239985: New client connected from 172.21.0.1 as mosqpub|10057-heretic (c1, k60, u'user1'). +1548239985: Client mosqpub|10057-heretic disconnected. +1548239985: New connection from 172.21.0.1 on port 1883. +1548239985: New client connected from 172.21.0.1 as mosqpub|10058-heretic (c1, k60, u'user1'). +1548239985: Client mosqpub|10058-heretic disconnected. +1548239986: New connection from 172.21.0.1 on port 1883. +1548239986: New client connected from 172.21.0.1 as mosqpub|10059-heretic (c1, k60, u'user1'). +1548239986: Client mosqpub|10059-heretic disconnected. +1548239986: New connection from 172.21.0.1 on port 1883. +1548239986: New client connected from 172.21.0.1 as mosqpub|10060-heretic (c1, k60, u'user1'). +1548239986: Client mosqpub|10060-heretic disconnected. +1548239987: New connection from 172.21.0.1 on port 1883. +1548239987: New client connected from 172.21.0.1 as mosqpub|10061-heretic (c1, k60, u'user1'). +1548239987: Client mosqpub|10061-heretic disconnected. +1548239987: New connection from 172.21.0.1 on port 1883. +1548239987: New client connected from 172.21.0.1 as mosqpub|10062-heretic (c1, k60, u'user1'). +1548239987: Client mosqpub|10062-heretic disconnected. +1548239988: New connection from 172.21.0.1 on port 1883. +1548239988: New client connected from 172.21.0.1 as mosqpub|10063-heretic (c1, k60, u'user1'). +1548239988: Client mosqpub|10063-heretic disconnected. +1548239988: New connection from 172.21.0.1 on port 1883. +1548239988: New client connected from 172.21.0.1 as mosqpub|10064-heretic (c1, k60, u'user1'). +1548239988: Client mosqpub|10064-heretic disconnected. +1548239989: New connection from 172.21.0.1 on port 1883. +1548239989: New client connected from 172.21.0.1 as mosqpub|10065-heretic (c1, k60, u'user1'). +1548239989: Client mosqpub|10065-heretic disconnected. +1548239989: New connection from 172.21.0.1 on port 1883. +1548239989: New client connected from 172.21.0.1 as mosqpub|10066-heretic (c1, k60, u'user1'). +1548239989: Client mosqpub|10066-heretic disconnected. +1548239990: New connection from 172.21.0.1 on port 1883. +1548239990: New client connected from 172.21.0.1 as mosqpub|10067-heretic (c1, k60, u'user1'). +1548239990: Client mosqpub|10067-heretic disconnected. +1548239990: New connection from 172.21.0.1 on port 1883. +1548239990: New client connected from 172.21.0.1 as mosqpub|10068-heretic (c1, k60, u'user1'). +1548239990: Client mosqpub|10068-heretic disconnected. +1548239991: New connection from 172.21.0.1 on port 1883. +1548239991: New client connected from 172.21.0.1 as mosqpub|10069-heretic (c1, k60, u'user1'). +1548239991: Client mosqpub|10069-heretic disconnected. +1548239991: New connection from 172.21.0.1 on port 1883. +1548239991: New client connected from 172.21.0.1 as mosqpub|10070-heretic (c1, k60, u'user1'). +1548239991: Client mosqpub|10070-heretic disconnected. +1548239992: New connection from 172.21.0.1 on port 1883. +1548239992: New client connected from 172.21.0.1 as mosqpub|10071-heretic (c1, k60, u'user1'). +1548239992: Client mosqpub|10071-heretic disconnected. +1548239992: New connection from 172.21.0.1 on port 1883. +1548239992: New client connected from 172.21.0.1 as mosqpub|10072-heretic (c1, k60, u'user1'). +1548239992: Client mosqpub|10072-heretic disconnected. +1548239993: New connection from 172.21.0.1 on port 1883. +1548239993: New client connected from 172.21.0.1 as mosqpub|10073-heretic (c1, k60, u'user1'). +1548239993: Client mosqpub|10073-heretic disconnected. +1548239993: New connection from 172.21.0.1 on port 1883. +1548239993: New client connected from 172.21.0.1 as mosqpub|10074-heretic (c1, k60, u'user1'). +1548239993: Client mosqpub|10074-heretic disconnected. +1548239994: New connection from 172.21.0.1 on port 1883. +1548239994: New client connected from 172.21.0.1 as mosqpub|10075-heretic (c1, k60, u'user1'). +1548239994: Client mosqpub|10075-heretic disconnected. +1548239995: New connection from 172.21.0.1 on port 1883. +1548239995: New client connected from 172.21.0.1 as mosqpub|10076-heretic (c1, k60, u'user1'). +1548239995: Client mosqpub|10076-heretic disconnected. +1548239995: New connection from 172.21.0.1 on port 1883. +1548239995: New client connected from 172.21.0.1 as mosqpub|10077-heretic (c1, k60, u'user1'). +1548239995: Client mosqpub|10077-heretic disconnected. +1548239996: New connection from 172.21.0.1 on port 1883. +1548239996: New client connected from 172.21.0.1 as mosqpub|10078-heretic (c1, k60, u'user1'). +1548239996: Client mosqpub|10078-heretic disconnected. +1548239996: New connection from 172.21.0.1 on port 1883. +1548239996: New client connected from 172.21.0.1 as mosqpub|10079-heretic (c1, k60, u'user1'). +1548239996: Client mosqpub|10079-heretic disconnected. +1548239997: New connection from 172.21.0.1 on port 1883. +1548239997: New client connected from 172.21.0.1 as mosqpub|10080-heretic (c1, k60, u'user1'). +1548239997: Client mosqpub|10080-heretic disconnected. +1548239997: New connection from 172.21.0.1 on port 1883. +1548239997: New client connected from 172.21.0.1 as mosqpub|10081-heretic (c1, k60, u'user1'). +1548239997: Client mosqpub|10081-heretic disconnected. +1548239998: New connection from 172.21.0.1 on port 1883. +1548239998: New client connected from 172.21.0.1 as mosqpub|10082-heretic (c1, k60, u'user1'). +1548239998: Client mosqpub|10082-heretic disconnected. +1548239998: New connection from 172.21.0.1 on port 1883. +1548239998: New client connected from 172.21.0.1 as mosqpub|10083-heretic (c1, k60, u'user1'). +1548239998: Client mosqpub|10083-heretic disconnected. +1548239999: New connection from 172.21.0.1 on port 1883. +1548239999: New client connected from 172.21.0.1 as mosqpub|10084-heretic (c1, k60, u'user1'). +1548239999: Client mosqpub|10084-heretic disconnected. +1548239999: New connection from 172.21.0.1 on port 1883. +1548239999: New client connected from 172.21.0.1 as mosqpub|10085-heretic (c1, k60, u'user1'). +1548239999: Client mosqpub|10085-heretic disconnected. +1548240000: New connection from 172.21.0.1 on port 1883. +1548240000: New client connected from 172.21.0.1 as mosqpub|10087-heretic (c1, k60, u'user1'). +1548240000: Client mosqpub|10087-heretic disconnected. +1548240000: New connection from 172.21.0.1 on port 1883. +1548240000: New client connected from 172.21.0.1 as mosqpub|10088-heretic (c1, k60, u'user1'). +1548240000: Client mosqpub|10088-heretic disconnected. +1548240001: New connection from 172.21.0.1 on port 1883. +1548240001: New client connected from 172.21.0.1 as mosqpub|10089-heretic (c1, k60, u'user1'). +1548240001: Client mosqpub|10089-heretic disconnected. +1548240001: New connection from 172.21.0.1 on port 1883. +1548240001: New client connected from 172.21.0.1 as mosqpub|10090-heretic (c1, k60, u'user1'). +1548240001: Client mosqpub|10090-heretic disconnected. +1548240002: New connection from 172.21.0.1 on port 1883. +1548240002: New client connected from 172.21.0.1 as mosqpub|10091-heretic (c1, k60, u'user1'). +1548240002: Client mosqpub|10091-heretic disconnected. +1548240002: New connection from 172.21.0.1 on port 1883. +1548240002: New client connected from 172.21.0.1 as mosqpub|10094-heretic (c1, k60, u'user1'). +1548240002: Client mosqpub|10094-heretic disconnected. +1548240003: New connection from 172.21.0.1 on port 1883. +1548240003: New client connected from 172.21.0.1 as mosqpub|10095-heretic (c1, k60, u'user1'). +1548240003: Client mosqpub|10095-heretic disconnected. +1548240003: New connection from 172.21.0.1 on port 1883. +1548240003: New client connected from 172.21.0.1 as mosqpub|10096-heretic (c1, k60, u'user1'). +1548240003: Client mosqpub|10096-heretic disconnected. +1548240004: New connection from 172.21.0.1 on port 1883. +1548240004: New client connected from 172.21.0.1 as mosqpub|10097-heretic (c1, k60, u'user1'). +1548240004: Client mosqpub|10097-heretic disconnected. +1548240004: New connection from 172.21.0.1 on port 1883. +1548240004: New client connected from 172.21.0.1 as mosqpub|10098-heretic (c1, k60, u'user1'). +1548240004: Client mosqpub|10098-heretic disconnected. +1548240005: New connection from 172.21.0.1 on port 1883. +1548240005: New client connected from 172.21.0.1 as mosqpub|10099-heretic (c1, k60, u'user1'). +1548240005: Client mosqpub|10099-heretic disconnected. +1548240005: New connection from 172.21.0.1 on port 1883. +1548240005: New client connected from 172.21.0.1 as mosqpub|10100-heretic (c1, k60, u'user1'). +1548240005: Client mosqpub|10100-heretic disconnected. +1548240006: New connection from 172.21.0.1 on port 1883. +1548240006: New client connected from 172.21.0.1 as mosqpub|10101-heretic (c1, k60, u'user1'). +1548240006: Client mosqpub|10101-heretic disconnected. +1548240006: New connection from 172.21.0.1 on port 1883. +1548240006: New client connected from 172.21.0.1 as mosqpub|10102-heretic (c1, k60, u'user1'). +1548240006: Client mosqpub|10102-heretic disconnected. +1548240007: New connection from 172.21.0.1 on port 1883. +1548240007: New client connected from 172.21.0.1 as mosqpub|10103-heretic (c1, k60, u'user1'). +1548240007: Client mosqpub|10103-heretic disconnected. +1548240007: New connection from 172.21.0.1 on port 1883. +1548240007: New client connected from 172.21.0.1 as mosqpub|10104-heretic (c1, k60, u'user1'). +1548240007: Client mosqpub|10104-heretic disconnected. +1548240008: New connection from 172.21.0.1 on port 1883. +1548240008: New client connected from 172.21.0.1 as mosqpub|10105-heretic (c1, k60, u'user1'). +1548240008: Client mosqpub|10105-heretic disconnected. +1548240008: New connection from 172.21.0.1 on port 1883. +1548240008: New client connected from 172.21.0.1 as mosqpub|10106-heretic (c1, k60, u'user1'). +1548240008: Client mosqpub|10106-heretic disconnected. +1548240009: New connection from 172.21.0.1 on port 1883. +1548240009: New client connected from 172.21.0.1 as mosqpub|10107-heretic (c1, k60, u'user1'). +1548240009: Client mosqpub|10107-heretic disconnected. +1548240009: New connection from 172.21.0.1 on port 1883. +1548240009: New client connected from 172.21.0.1 as mosqpub|10108-heretic (c1, k60, u'user1'). +1548240009: Client mosqpub|10108-heretic disconnected. +1548240010: New connection from 172.21.0.1 on port 1883. +1548240010: New client connected from 172.21.0.1 as mosqpub|10109-heretic (c1, k60, u'user1'). +1548240010: Client mosqpub|10109-heretic disconnected. +1548240010: New connection from 172.21.0.1 on port 1883. +1548240010: New client connected from 172.21.0.1 as mosqpub|10110-heretic (c1, k60, u'user1'). +1548240010: Client mosqpub|10110-heretic disconnected. +1548240011: New connection from 172.21.0.1 on port 1883. +1548240011: New client connected from 172.21.0.1 as mosqpub|10111-heretic (c1, k60, u'user1'). +1548240011: Client mosqpub|10111-heretic disconnected. +1548240011: New connection from 172.21.0.1 on port 1883. +1548240011: New client connected from 172.21.0.1 as mosqpub|10112-heretic (c1, k60, u'user1'). +1548240011: Client mosqpub|10112-heretic disconnected. +1548240012: New connection from 172.21.0.1 on port 1883. +1548240012: New client connected from 172.21.0.1 as mosqpub|10113-heretic (c1, k60, u'user1'). +1548240012: Client mosqpub|10113-heretic disconnected. +1548240012: New connection from 172.21.0.1 on port 1883. +1548240012: New client connected from 172.21.0.1 as mosqpub|10114-heretic (c1, k60, u'user1'). +1548240012: Client mosqpub|10114-heretic disconnected. +1548240013: New connection from 172.21.0.1 on port 1883. +1548240013: New client connected from 172.21.0.1 as mosqpub|10115-heretic (c1, k60, u'user1'). +1548240013: Client mosqpub|10115-heretic disconnected. +1548240013: New connection from 172.21.0.1 on port 1883. +1548240013: New client connected from 172.21.0.1 as mosqpub|10116-heretic (c1, k60, u'user1'). +1548240013: Client mosqpub|10116-heretic disconnected. +1548240014: New connection from 172.21.0.1 on port 1883. +1548240014: New client connected from 172.21.0.1 as mosqpub|10117-heretic (c1, k60, u'user1'). +1548240014: Client mosqpub|10117-heretic disconnected. +1548240014: New connection from 172.21.0.1 on port 1883. +1548240014: New client connected from 172.21.0.1 as mosqpub|10118-heretic (c1, k60, u'user1'). +1548240014: Client mosqpub|10118-heretic disconnected. +1548240015: New connection from 172.21.0.1 on port 1883. +1548240015: New client connected from 172.21.0.1 as mosqpub|10119-heretic (c1, k60, u'user1'). +1548240015: Client mosqpub|10119-heretic disconnected. +1548240015: New connection from 172.21.0.1 on port 1883. +1548240015: New client connected from 172.21.0.1 as mosqpub|10120-heretic (c1, k60, u'user1'). +1548240015: Client mosqpub|10120-heretic disconnected. +1548240016: New connection from 172.21.0.1 on port 1883. +1548240016: New client connected from 172.21.0.1 as mosqpub|10121-heretic (c1, k60, u'user1'). +1548240016: Client mosqpub|10121-heretic disconnected. +1548240016: New connection from 172.21.0.1 on port 1883. +1548240016: New client connected from 172.21.0.1 as mosqpub|10122-heretic (c1, k60, u'user1'). +1548240016: Client mosqpub|10122-heretic disconnected. +1548240017: New connection from 172.21.0.1 on port 1883. +1548240017: New client connected from 172.21.0.1 as mosqpub|10123-heretic (c1, k60, u'user1'). +1548240017: Client mosqpub|10123-heretic disconnected. +1548240017: New connection from 172.21.0.1 on port 1883. +1548240017: New client connected from 172.21.0.1 as mosqpub|10124-heretic (c1, k60, u'user1'). +1548240017: Client mosqpub|10124-heretic disconnected. +1548240018: New connection from 172.21.0.1 on port 1883. +1548240018: New client connected from 172.21.0.1 as mosqpub|10125-heretic (c1, k60, u'user1'). +1548240018: Client mosqpub|10125-heretic disconnected. +1548240018: New connection from 172.21.0.1 on port 1883. +1548240018: New client connected from 172.21.0.1 as mosqpub|10126-heretic (c1, k60, u'user1'). +1548240018: Client mosqpub|10126-heretic disconnected. +1548240019: New connection from 172.21.0.1 on port 1883. +1548240019: New client connected from 172.21.0.1 as mosqpub|10127-heretic (c1, k60, u'user1'). +1548240019: Client mosqpub|10127-heretic disconnected. +1548240019: New connection from 172.21.0.1 on port 1883. +1548240019: New client connected from 172.21.0.1 as mosqpub|10128-heretic (c1, k60, u'user1'). +1548240019: Client mosqpub|10128-heretic disconnected. +1548240020: New connection from 172.21.0.1 on port 1883. +1548240020: New client connected from 172.21.0.1 as mosqpub|10129-heretic (c1, k60, u'user1'). +1548240020: Client mosqpub|10129-heretic disconnected. +1548240020: New connection from 172.21.0.1 on port 1883. +1548240020: New client connected from 172.21.0.1 as mosqpub|10130-heretic (c1, k60, u'user1'). +1548240020: Client mosqpub|10130-heretic disconnected. +1548240021: New connection from 172.21.0.1 on port 1883. +1548240021: New client connected from 172.21.0.1 as mosqpub|10132-heretic (c1, k60, u'user1'). +1548240021: Client mosqpub|10132-heretic disconnected. +1548240021: New connection from 172.21.0.1 on port 1883. +1548240021: New client connected from 172.21.0.1 as mosqpub|10133-heretic (c1, k60, u'user1'). +1548240021: Client mosqpub|10133-heretic disconnected. +1548240022: New connection from 172.21.0.1 on port 1883. +1548240022: New client connected from 172.21.0.1 as mosqpub|10134-heretic (c1, k60, u'user1'). +1548240022: Client mosqpub|10134-heretic disconnected. +1548240022: New connection from 172.21.0.1 on port 1883. +1548240022: New client connected from 172.21.0.1 as mosqpub|10135-heretic (c1, k60, u'user1'). +1548240022: Client mosqpub|10135-heretic disconnected. +1548240023: New connection from 172.21.0.1 on port 1883. +1548240023: New client connected from 172.21.0.1 as mosqpub|10136-heretic (c1, k60, u'user1'). +1548240023: Client mosqpub|10136-heretic disconnected. +1548240023: New connection from 172.21.0.1 on port 1883. +1548240023: New client connected from 172.21.0.1 as mosqpub|10137-heretic (c1, k60, u'user1'). +1548240023: Client mosqpub|10137-heretic disconnected. +1548240024: New connection from 172.21.0.1 on port 1883. +1548240024: New client connected from 172.21.0.1 as mosqpub|10138-heretic (c1, k60, u'user1'). +1548240024: Client mosqpub|10138-heretic disconnected. +1548240024: New connection from 172.21.0.1 on port 1883. +1548240024: New client connected from 172.21.0.1 as mosqpub|10139-heretic (c1, k60, u'user1'). +1548240024: Client mosqpub|10139-heretic disconnected. +1548240025: New connection from 172.21.0.1 on port 1883. +1548240025: New client connected from 172.21.0.1 as mosqpub|10140-heretic (c1, k60, u'user1'). +1548240025: Client mosqpub|10140-heretic disconnected. +1548240025: New connection from 172.21.0.1 on port 1883. +1548240025: New client connected from 172.21.0.1 as mosqpub|10141-heretic (c1, k60, u'user1'). +1548240025: Client mosqpub|10141-heretic disconnected. +1548240026: New connection from 172.21.0.1 on port 1883. +1548240026: New client connected from 172.21.0.1 as mosqpub|10142-heretic (c1, k60, u'user1'). +1548240026: Client mosqpub|10142-heretic disconnected. +1548240026: New connection from 172.21.0.1 on port 1883. +1548240026: New client connected from 172.21.0.1 as mosqpub|10143-heretic (c1, k60, u'user1'). +1548240026: Client mosqpub|10143-heretic disconnected. +1548240027: New connection from 172.21.0.1 on port 1883. +1548240027: New client connected from 172.21.0.1 as mosqpub|10144-heretic (c1, k60, u'user1'). +1548240027: Client mosqpub|10144-heretic disconnected. +1548240027: New connection from 172.21.0.1 on port 1883. +1548240027: New client connected from 172.21.0.1 as mosqpub|10145-heretic (c1, k60, u'user1'). +1548240027: Client mosqpub|10145-heretic disconnected. +1548240028: New connection from 172.21.0.1 on port 1883. +1548240028: New client connected from 172.21.0.1 as mosqpub|10146-heretic (c1, k60, u'user1'). +1548240028: Client mosqpub|10146-heretic disconnected. +1548240028: New connection from 172.21.0.1 on port 1883. +1548240028: New client connected from 172.21.0.1 as mosqpub|10147-heretic (c1, k60, u'user1'). +1548240028: Client mosqpub|10147-heretic disconnected. +1548240029: New connection from 172.21.0.1 on port 1883. +1548240029: New client connected from 172.21.0.1 as mosqpub|10148-heretic (c1, k60, u'user1'). +1548240029: Client mosqpub|10148-heretic disconnected. +1548240029: New connection from 172.21.0.1 on port 1883. +1548240029: New client connected from 172.21.0.1 as mosqpub|10149-heretic (c1, k60, u'user1'). +1548240029: Client mosqpub|10149-heretic disconnected. +1548240030: New connection from 172.21.0.1 on port 1883. +1548240030: New client connected from 172.21.0.1 as mosqpub|10150-heretic (c1, k60, u'user1'). +1548240030: Client mosqpub|10150-heretic disconnected. +1548240030: New connection from 172.21.0.1 on port 1883. +1548240030: New client connected from 172.21.0.1 as mosqpub|10151-heretic (c1, k60, u'user1'). +1548240030: Client mosqpub|10151-heretic disconnected. +1548240031: New connection from 172.21.0.1 on port 1883. +1548240031: New client connected from 172.21.0.1 as mosqpub|10152-heretic (c1, k60, u'user1'). +1548240031: Client mosqpub|10152-heretic disconnected. +1548240031: New connection from 172.21.0.1 on port 1883. +1548240031: New client connected from 172.21.0.1 as mosqpub|10153-heretic (c1, k60, u'user1'). +1548240031: Client mosqpub|10153-heretic disconnected. +1548240032: New connection from 172.21.0.1 on port 1883. +1548240032: New client connected from 172.21.0.1 as mosqpub|10155-heretic (c1, k60, u'user1'). +1548240032: Client mosqpub|10155-heretic disconnected. +1548240032: New connection from 172.21.0.1 on port 1883. +1548240032: New client connected from 172.21.0.1 as mosqpub|10156-heretic (c1, k60, u'user1'). +1548240032: Client mosqpub|10156-heretic disconnected. +1548240033: New connection from 172.21.0.1 on port 1883. +1548240033: New client connected from 172.21.0.1 as mosqpub|10157-heretic (c1, k60, u'user1'). +1548240033: Client mosqpub|10157-heretic disconnected. +1548240034: New connection from 172.21.0.1 on port 1883. +1548240034: New client connected from 172.21.0.1 as mosqpub|10158-heretic (c1, k60, u'user1'). +1548240034: Client mosqpub|10158-heretic disconnected. +1548240034: New connection from 172.21.0.1 on port 1883. +1548240034: New client connected from 172.21.0.1 as mosqpub|10159-heretic (c1, k60, u'user1'). +1548240034: Client mosqpub|10159-heretic disconnected. +1548240035: New connection from 172.21.0.1 on port 1883. +1548240035: New client connected from 172.21.0.1 as mosqpub|10160-heretic (c1, k60, u'user1'). +1548240035: Client mosqpub|10160-heretic disconnected. +1548240035: New connection from 172.21.0.1 on port 1883. +1548240035: New client connected from 172.21.0.1 as mosqpub|10161-heretic (c1, k60, u'user1'). +1548240035: Client mosqpub|10161-heretic disconnected. +1548240036: New connection from 172.21.0.1 on port 1883. +1548240036: New client connected from 172.21.0.1 as mosqpub|10162-heretic (c1, k60, u'user1'). +1548240036: Client mosqpub|10162-heretic disconnected. +1548240036: New connection from 172.21.0.1 on port 1883. +1548240036: New client connected from 172.21.0.1 as mosqpub|10163-heretic (c1, k60, u'user1'). +1548240036: Client mosqpub|10163-heretic disconnected. +1548240037: New connection from 172.21.0.1 on port 1883. +1548240037: New client connected from 172.21.0.1 as mosqpub|10164-heretic (c1, k60, u'user1'). +1548240037: Client mosqpub|10164-heretic disconnected. +1548240037: New connection from 172.21.0.1 on port 1883. +1548240037: New client connected from 172.21.0.1 as mosqpub|10165-heretic (c1, k60, u'user1'). +1548240037: Client mosqpub|10165-heretic disconnected. +1548240038: New connection from 172.21.0.1 on port 1883. +1548240038: New client connected from 172.21.0.1 as mosqpub|10166-heretic (c1, k60, u'user1'). +1548240038: Client mosqpub|10166-heretic disconnected. +1548240038: New connection from 172.21.0.1 on port 1883. +1548240038: New client connected from 172.21.0.1 as mosqpub|10167-heretic (c1, k60, u'user1'). +1548240038: Client mosqpub|10167-heretic disconnected. +1548240039: New connection from 172.21.0.1 on port 1883. +1548240039: New client connected from 172.21.0.1 as mosqpub|10168-heretic (c1, k60, u'user1'). +1548240039: Client mosqpub|10168-heretic disconnected. +1548240039: New connection from 172.21.0.1 on port 1883. +1548240039: New client connected from 172.21.0.1 as mosqpub|10169-heretic (c1, k60, u'user1'). +1548240039: Client mosqpub|10169-heretic disconnected. +1548240040: New connection from 172.21.0.1 on port 1883. +1548240040: New client connected from 172.21.0.1 as mosqpub|10170-heretic (c1, k60, u'user1'). +1548240040: Client mosqpub|10170-heretic disconnected. +1548240040: New connection from 172.21.0.1 on port 1883. +1548240040: New client connected from 172.21.0.1 as mosqpub|10171-heretic (c1, k60, u'user1'). +1548240040: Client mosqpub|10171-heretic disconnected. +1548240041: New connection from 172.21.0.1 on port 1883. +1548240041: New client connected from 172.21.0.1 as mosqpub|10172-heretic (c1, k60, u'user1'). +1548240041: Client mosqpub|10172-heretic disconnected. +1548240041: New connection from 172.21.0.1 on port 1883. +1548240041: New client connected from 172.21.0.1 as mosqpub|10173-heretic (c1, k60, u'user1'). +1548240041: Client mosqpub|10173-heretic disconnected. +1548240042: New connection from 172.21.0.1 on port 1883. +1548240042: New client connected from 172.21.0.1 as mosqpub|10174-heretic (c1, k60, u'user1'). +1548240042: Client mosqpub|10174-heretic disconnected. +1548240042: New connection from 172.21.0.1 on port 1883. +1548240042: New client connected from 172.21.0.1 as mosqpub|10175-heretic (c1, k60, u'user1'). +1548240042: Client mosqpub|10175-heretic disconnected. +1548240043: New connection from 172.21.0.1 on port 1883. +1548240043: New client connected from 172.21.0.1 as mosqpub|10176-heretic (c1, k60, u'user1'). +1548240043: Client mosqpub|10176-heretic disconnected. +1548240043: New connection from 172.21.0.1 on port 1883. +1548240043: New client connected from 172.21.0.1 as mosqpub|10177-heretic (c1, k60, u'user1'). +1548240043: Client mosqpub|10177-heretic disconnected. +1548240044: New connection from 172.21.0.1 on port 1883. +1548240044: New client connected from 172.21.0.1 as mosqpub|10178-heretic (c1, k60, u'user1'). +1548240044: Client mosqpub|10178-heretic disconnected. +1548240044: New connection from 172.21.0.1 on port 1883. +1548240044: New client connected from 172.21.0.1 as mosqpub|10179-heretic (c1, k60, u'user1'). +1548240044: Client mosqpub|10179-heretic disconnected. +1548240045: New connection from 172.21.0.1 on port 1883. +1548240045: New client connected from 172.21.0.1 as mosqpub|10180-heretic (c1, k60, u'user1'). +1548240045: Client mosqpub|10180-heretic disconnected. +1548240045: New connection from 172.21.0.1 on port 1883. +1548240045: New client connected from 172.21.0.1 as mosqpub|10181-heretic (c1, k60, u'user1'). +1548240045: Client mosqpub|10181-heretic disconnected. +1548240046: New connection from 172.21.0.1 on port 1883. +1548240046: New client connected from 172.21.0.1 as mosqpub|10182-heretic (c1, k60, u'user1'). +1548240046: Client mosqpub|10182-heretic disconnected. +1548240046: New connection from 172.21.0.1 on port 1883. +1548240046: New client connected from 172.21.0.1 as mosqpub|10183-heretic (c1, k60, u'user1'). +1548240046: Client mosqpub|10183-heretic disconnected. +1548240047: New connection from 172.21.0.1 on port 1883. +1548240047: New client connected from 172.21.0.1 as mosqpub|10185-heretic (c1, k60, u'user1'). +1548240047: Client mosqpub|10185-heretic disconnected. +1548240047: New connection from 172.21.0.1 on port 1883. +1548240047: New client connected from 172.21.0.1 as mosqpub|10186-heretic (c1, k60, u'user1'). +1548240047: Client mosqpub|10186-heretic disconnected. +1548240048: New connection from 172.21.0.1 on port 1883. +1548240048: New client connected from 172.21.0.1 as mosqpub|10187-heretic (c1, k60, u'user1'). +1548240048: Client mosqpub|10187-heretic disconnected. +1548240048: New connection from 172.21.0.1 on port 1883. +1548240048: New client connected from 172.21.0.1 as mosqpub|10188-heretic (c1, k60, u'user1'). +1548240048: Client mosqpub|10188-heretic disconnected. +1548240049: New connection from 172.21.0.1 on port 1883. +1548240049: New client connected from 172.21.0.1 as mosqpub|10189-heretic (c1, k60, u'user1'). +1548240049: Client mosqpub|10189-heretic disconnected. +1548240049: New connection from 172.21.0.1 on port 1883. +1548240049: New client connected from 172.21.0.1 as mosqpub|10190-heretic (c1, k60, u'user1'). +1548240049: Client mosqpub|10190-heretic disconnected. +1548240050: New connection from 172.21.0.1 on port 1883. +1548240050: New client connected from 172.21.0.1 as mosqpub|10191-heretic (c1, k60, u'user1'). +1548240050: Client mosqpub|10191-heretic disconnected. +1548240050: New connection from 172.21.0.1 on port 1883. +1548240050: New client connected from 172.21.0.1 as mosqpub|10192-heretic (c1, k60, u'user1'). +1548240050: Client mosqpub|10192-heretic disconnected. +1548240051: New connection from 172.21.0.1 on port 1883. +1548240051: New client connected from 172.21.0.1 as mosqpub|10193-heretic (c1, k60, u'user1'). +1548240051: Client mosqpub|10193-heretic disconnected. +1548240051: New connection from 172.21.0.1 on port 1883. +1548240051: New client connected from 172.21.0.1 as mosqpub|10194-heretic (c1, k60, u'user1'). +1548240051: Client mosqpub|10194-heretic disconnected. +1548240052: New connection from 172.21.0.1 on port 1883. +1548240052: New client connected from 172.21.0.1 as mosqpub|10195-heretic (c1, k60, u'user1'). +1548240052: Client mosqpub|10195-heretic disconnected. +1548240052: New connection from 172.21.0.1 on port 1883. +1548240052: New client connected from 172.21.0.1 as mosqpub|10196-heretic (c1, k60, u'user1'). +1548240052: Client mosqpub|10196-heretic disconnected. +1548240053: New connection from 172.21.0.1 on port 1883. +1548240053: New client connected from 172.21.0.1 as mosqpub|10197-heretic (c1, k60, u'user1'). +1548240053: Client mosqpub|10197-heretic disconnected. +1548240053: New connection from 172.21.0.1 on port 1883. +1548240053: New client connected from 172.21.0.1 as mosqpub|10198-heretic (c1, k60, u'user1'). +1548240053: Client mosqpub|10198-heretic disconnected. +1548240054: New connection from 172.21.0.1 on port 1883. +1548240054: New client connected from 172.21.0.1 as mosqpub|10199-heretic (c1, k60, u'user1'). +1548240054: Client mosqpub|10199-heretic disconnected. +1548240054: New connection from 172.21.0.1 on port 1883. +1548240054: New client connected from 172.21.0.1 as mosqpub|10200-heretic (c1, k60, u'user1'). +1548240054: Client mosqpub|10200-heretic disconnected. +1548240055: New connection from 172.21.0.1 on port 1883. +1548240055: New client connected from 172.21.0.1 as mosqpub|10201-heretic (c1, k60, u'user1'). +1548240055: Client mosqpub|10201-heretic disconnected. +1548240055: New connection from 172.21.0.1 on port 1883. +1548240055: New client connected from 172.21.0.1 as mosqpub|10202-heretic (c1, k60, u'user1'). +1548240055: Client mosqpub|10202-heretic disconnected. +1548240056: New connection from 172.21.0.1 on port 1883. +1548240056: New client connected from 172.21.0.1 as mosqpub|10203-heretic (c1, k60, u'user1'). +1548240056: Client mosqpub|10203-heretic disconnected. +1548240056: New connection from 172.21.0.1 on port 1883. +1548240056: New client connected from 172.21.0.1 as mosqpub|10204-heretic (c1, k60, u'user1'). +1548240056: Client mosqpub|10204-heretic disconnected. +1548240057: New connection from 172.21.0.1 on port 1883. +1548240057: New client connected from 172.21.0.1 as mosqpub|10205-heretic (c1, k60, u'user1'). +1548240057: Client mosqpub|10205-heretic disconnected. +1548240057: New connection from 172.21.0.1 on port 1883. +1548240057: New client connected from 172.21.0.1 as mosqpub|10206-heretic (c1, k60, u'user1'). +1548240057: Client mosqpub|10206-heretic disconnected. +1548240058: New connection from 172.21.0.1 on port 1883. +1548240058: New client connected from 172.21.0.1 as mosqpub|10207-heretic (c1, k60, u'user1'). +1548240058: Client mosqpub|10207-heretic disconnected. +1548240058: New connection from 172.21.0.1 on port 1883. +1548240058: New client connected from 172.21.0.1 as mosqpub|10208-heretic (c1, k60, u'user1'). +1548240058: Client mosqpub|10208-heretic disconnected. +1548240059: New connection from 172.21.0.1 on port 1883. +1548240059: New client connected from 172.21.0.1 as mosqpub|10209-heretic (c1, k60, u'user1'). +1548240059: Client mosqpub|10209-heretic disconnected. +1548240059: New connection from 172.21.0.1 on port 1883. +1548240059: New client connected from 172.21.0.1 as mosqpub|10210-heretic (c1, k60, u'user1'). +1548240059: Client mosqpub|10210-heretic disconnected. +1548240060: New connection from 172.21.0.1 on port 1883. +1548240060: New client connected from 172.21.0.1 as mosqpub|10211-heretic (c1, k60, u'user1'). +1548240060: Client mosqpub|10211-heretic disconnected. +1548240060: New connection from 172.21.0.1 on port 1883. +1548240060: New client connected from 172.21.0.1 as mosqpub|10212-heretic (c1, k60, u'user1'). +1548240060: Client mosqpub|10212-heretic disconnected. +1548240061: New connection from 172.21.0.1 on port 1883. +1548240061: New client connected from 172.21.0.1 as mosqpub|10213-heretic (c1, k60, u'user1'). +1548240061: Client mosqpub|10213-heretic disconnected. +1548240061: New connection from 172.21.0.1 on port 1883. +1548240061: New client connected from 172.21.0.1 as mosqpub|10214-heretic (c1, k60, u'user1'). +1548240061: Client mosqpub|10214-heretic disconnected. +1548240062: New connection from 172.21.0.1 on port 1883. +1548240062: New client connected from 172.21.0.1 as mosqpub|10215-heretic (c1, k60, u'user1'). +1548240062: Client mosqpub|10215-heretic disconnected. +1548240062: New connection from 172.21.0.1 on port 1883. +1548240062: New client connected from 172.21.0.1 as mosqpub|10216-heretic (c1, k60, u'user1'). +1548240062: Client mosqpub|10216-heretic disconnected. +1548240063: New connection from 172.21.0.1 on port 1883. +1548240063: New client connected from 172.21.0.1 as mosqpub|10217-heretic (c1, k60, u'user1'). +1548240063: Client mosqpub|10217-heretic disconnected. +1548240063: New connection from 172.21.0.1 on port 1883. +1548240063: New client connected from 172.21.0.1 as mosqpub|10218-heretic (c1, k60, u'user1'). +1548240063: Client mosqpub|10218-heretic disconnected. +1548240064: New connection from 172.21.0.1 on port 1883. +1548240064: New client connected from 172.21.0.1 as mosqpub|10219-heretic (c1, k60, u'user1'). +1548240064: Client mosqpub|10219-heretic disconnected. +1548240064: New connection from 172.21.0.1 on port 1883. +1548240064: New client connected from 172.21.0.1 as mosqpub|10220-heretic (c1, k60, u'user1'). +1548240064: Client mosqpub|10220-heretic disconnected. +1548240065: New connection from 172.21.0.1 on port 1883. +1548240065: New client connected from 172.21.0.1 as mosqpub|10221-heretic (c1, k60, u'user1'). +1548240065: Client mosqpub|10221-heretic disconnected. +1548240065: New connection from 172.21.0.1 on port 1883. +1548240065: New client connected from 172.21.0.1 as mosqpub|10222-heretic (c1, k60, u'user1'). +1548240065: Client mosqpub|10222-heretic disconnected. +1548240066: New connection from 172.21.0.1 on port 1883. +1548240066: New client connected from 172.21.0.1 as mosqpub|10223-heretic (c1, k60, u'user1'). +1548240066: Client mosqpub|10223-heretic disconnected. +1548240066: New connection from 172.21.0.1 on port 1883. +1548240066: New client connected from 172.21.0.1 as mosqpub|10224-heretic (c1, k60, u'user1'). +1548240066: Client mosqpub|10224-heretic disconnected. +1548240067: New connection from 172.21.0.1 on port 1883. +1548240067: New client connected from 172.21.0.1 as mosqpub|10227-heretic (c1, k60, u'user1'). +1548240067: Client mosqpub|10227-heretic disconnected. +1548240067: New connection from 172.21.0.1 on port 1883. +1548240067: New client connected from 172.21.0.1 as mosqpub|10228-heretic (c1, k60, u'user1'). +1548240067: Client mosqpub|10228-heretic disconnected. +1548240068: New connection from 172.21.0.1 on port 1883. +1548240068: New client connected from 172.21.0.1 as mosqpub|10229-heretic (c1, k60, u'user1'). +1548240068: Client mosqpub|10229-heretic disconnected. +1548240068: New connection from 172.21.0.1 on port 1883. +1548240068: New client connected from 172.21.0.1 as mosqpub|10234-heretic (c1, k60, u'user1'). +1548240068: Client mosqpub|10234-heretic disconnected. +1548240069: New connection from 172.21.0.1 on port 1883. +1548240069: New client connected from 172.21.0.1 as mosqpub|10235-heretic (c1, k60, u'user1'). +1548240069: Client mosqpub|10235-heretic disconnected. +1548240069: New connection from 172.21.0.1 on port 1883. +1548240069: New client connected from 172.21.0.1 as mosqpub|10236-heretic (c1, k60, u'user1'). +1548240069: Client mosqpub|10236-heretic disconnected. +1548240070: New connection from 172.21.0.1 on port 1883. +1548240070: New client connected from 172.21.0.1 as mosqpub|10237-heretic (c1, k60, u'user1'). +1548240070: Client mosqpub|10237-heretic disconnected. +1548240070: New connection from 172.21.0.1 on port 1883. +1548240070: New client connected from 172.21.0.1 as mosqpub|10238-heretic (c1, k60, u'user1'). +1548240070: Client mosqpub|10238-heretic disconnected. +1548240071: New connection from 172.21.0.1 on port 1883. +1548240071: New client connected from 172.21.0.1 as mosqpub|10239-heretic (c1, k60, u'user1'). +1548240071: Client mosqpub|10239-heretic disconnected. +1548240071: New connection from 172.21.0.1 on port 1883. +1548240071: New client connected from 172.21.0.1 as mosqpub|10240-heretic (c1, k60, u'user1'). +1548240071: Client mosqpub|10240-heretic disconnected. +1548240072: New connection from 172.21.0.1 on port 1883. +1548240072: New client connected from 172.21.0.1 as mosqpub|10241-heretic (c1, k60, u'user1'). +1548240072: Client mosqpub|10241-heretic disconnected. +1548240072: New connection from 172.21.0.1 on port 1883. +1548240072: New client connected from 172.21.0.1 as mosqpub|10242-heretic (c1, k60, u'user1'). +1548240072: Client mosqpub|10242-heretic disconnected. +1548240073: New connection from 172.21.0.1 on port 1883. +1548240073: New client connected from 172.21.0.1 as mosqpub|10243-heretic (c1, k60, u'user1'). +1548240073: Client mosqpub|10243-heretic disconnected. +1548240074: New connection from 172.21.0.1 on port 1883. +1548240074: New client connected from 172.21.0.1 as mosqpub|10244-heretic (c1, k60, u'user1'). +1548240074: Client mosqpub|10244-heretic disconnected. +1548240074: New connection from 172.21.0.1 on port 1883. +1548240074: New client connected from 172.21.0.1 as mosqpub|10245-heretic (c1, k60, u'user1'). +1548240074: Client mosqpub|10245-heretic disconnected. +1548240075: New connection from 172.21.0.1 on port 1883. +1548240075: New client connected from 172.21.0.1 as mosqpub|10246-heretic (c1, k60, u'user1'). +1548240075: Client mosqpub|10246-heretic disconnected. +1548240075: New connection from 172.21.0.1 on port 1883. +1548240075: New client connected from 172.21.0.1 as mosqpub|10247-heretic (c1, k60, u'user1'). +1548240075: Client mosqpub|10247-heretic disconnected. +1548240076: New connection from 172.21.0.1 on port 1883. +1548240076: New client connected from 172.21.0.1 as mosqpub|10248-heretic (c1, k60, u'user1'). +1548240076: Client mosqpub|10248-heretic disconnected. +1548240076: New connection from 172.21.0.1 on port 1883. +1548240076: New client connected from 172.21.0.1 as mosqpub|10249-heretic (c1, k60, u'user1'). +1548240076: Client mosqpub|10249-heretic disconnected. +1548240077: New connection from 172.21.0.1 on port 1883. +1548240077: New client connected from 172.21.0.1 as mosqpub|10250-heretic (c1, k60, u'user1'). +1548240077: Client mosqpub|10250-heretic disconnected. +1548240077: New connection from 172.21.0.1 on port 1883. +1548240077: New client connected from 172.21.0.1 as mosqpub|10251-heretic (c1, k60, u'user1'). +1548240077: Client mosqpub|10251-heretic disconnected. +1548240078: New connection from 172.21.0.1 on port 1883. +1548240078: New client connected from 172.21.0.1 as mosqpub|10252-heretic (c1, k60, u'user1'). +1548240078: Client mosqpub|10252-heretic disconnected. +1548240078: New connection from 172.21.0.1 on port 1883. +1548240078: New client connected from 172.21.0.1 as mosqpub|10253-heretic (c1, k60, u'user1'). +1548240078: Client mosqpub|10253-heretic disconnected. +1548240079: New connection from 172.21.0.1 on port 1883. +1548240079: New client connected from 172.21.0.1 as mosqpub|10254-heretic (c1, k60, u'user1'). +1548240079: Client mosqpub|10254-heretic disconnected. +1548240079: New connection from 172.21.0.1 on port 1883. +1548240079: New client connected from 172.21.0.1 as mosqpub|10255-heretic (c1, k60, u'user1'). +1548240079: Client mosqpub|10255-heretic disconnected. +1548240080: New connection from 172.21.0.1 on port 1883. +1548240080: New client connected from 172.21.0.1 as mosqpub|10256-heretic (c1, k60, u'user1'). +1548240080: Client mosqpub|10256-heretic disconnected. +1548240080: New connection from 172.21.0.1 on port 1883. +1548240080: New client connected from 172.21.0.1 as mosqpub|10257-heretic (c1, k60, u'user1'). +1548240080: Client mosqpub|10257-heretic disconnected. +1548240081: New connection from 172.21.0.1 on port 1883. +1548240081: New client connected from 172.21.0.1 as mosqpub|10259-heretic (c1, k60, u'user1'). +1548240081: Client mosqpub|10259-heretic disconnected. +1548240081: New connection from 172.21.0.1 on port 1883. +1548240081: New client connected from 172.21.0.1 as mosqpub|10260-heretic (c1, k60, u'user1'). +1548240081: Client mosqpub|10260-heretic disconnected. +1548240082: New connection from 172.21.0.1 on port 1883. +1548240082: New client connected from 172.21.0.1 as mosqpub|10261-heretic (c1, k60, u'user1'). +1548240082: Client mosqpub|10261-heretic disconnected. +1548240082: New connection from 172.21.0.1 on port 1883. +1548240082: New client connected from 172.21.0.1 as mosqpub|10267-heretic (c1, k60, u'user1'). +1548240082: Client mosqpub|10267-heretic disconnected. +1548240083: New connection from 172.21.0.1 on port 1883. +1548240083: New client connected from 172.21.0.1 as mosqpub|10268-heretic (c1, k60, u'user1'). +1548240083: Client mosqpub|10268-heretic disconnected. +1548240083: New connection from 172.21.0.1 on port 1883. +1548240083: New client connected from 172.21.0.1 as mosqpub|10269-heretic (c1, k60, u'user1'). +1548240083: Client mosqpub|10269-heretic disconnected. +1548240084: New connection from 172.21.0.1 on port 1883. +1548240084: New client connected from 172.21.0.1 as mosqpub|10270-heretic (c1, k60, u'user1'). +1548240084: Client mosqpub|10270-heretic disconnected. +1548240084: New connection from 172.21.0.1 on port 1883. +1548240084: New client connected from 172.21.0.1 as mosqpub|10271-heretic (c1, k60, u'user1'). +1548240084: Client mosqpub|10271-heretic disconnected. +1548240085: New connection from 172.21.0.1 on port 1883. +1548240085: New client connected from 172.21.0.1 as mosqpub|10272-heretic (c1, k60, u'user1'). +1548240085: Client mosqpub|10272-heretic disconnected. +1548240085: New connection from 172.21.0.1 on port 1883. +1548240085: New client connected from 172.21.0.1 as mosqpub|10273-heretic (c1, k60, u'user1'). +1548240085: Client mosqpub|10273-heretic disconnected. +1548240086: New connection from 172.21.0.1 on port 1883. +1548240086: New client connected from 172.21.0.1 as mosqpub|10274-heretic (c1, k60, u'user1'). +1548240086: Client mosqpub|10274-heretic disconnected. +1548240086: New connection from 172.21.0.1 on port 1883. +1548240086: New client connected from 172.21.0.1 as mosqpub|10275-heretic (c1, k60, u'user1'). +1548240086: Client mosqpub|10275-heretic disconnected. +1548240087: New connection from 172.21.0.1 on port 1883. +1548240087: New client connected from 172.21.0.1 as mosqpub|10276-heretic (c1, k60, u'user1'). +1548240087: Client mosqpub|10276-heretic disconnected. +1548240087: New connection from 172.21.0.1 on port 1883. +1548240087: New client connected from 172.21.0.1 as mosqpub|10277-heretic (c1, k60, u'user1'). +1548240087: Client mosqpub|10277-heretic disconnected. +1548240088: New connection from 172.21.0.1 on port 1883. +1548240088: New client connected from 172.21.0.1 as mosqpub|10278-heretic (c1, k60, u'user1'). +1548240088: Client mosqpub|10278-heretic disconnected. +1548240088: New connection from 172.21.0.1 on port 1883. +1548240088: New client connected from 172.21.0.1 as mosqpub|10279-heretic (c1, k60, u'user1'). +1548240088: Client mosqpub|10279-heretic disconnected. +1548240089: New connection from 172.21.0.1 on port 1883. +1548240089: New client connected from 172.21.0.1 as mosqpub|10280-heretic (c1, k60, u'user1'). +1548240089: Client mosqpub|10280-heretic disconnected. +1548240089: New connection from 172.21.0.1 on port 1883. +1548240089: New client connected from 172.21.0.1 as mosqpub|10281-heretic (c1, k60, u'user1'). +1548240089: Client mosqpub|10281-heretic disconnected. +1548240090: New connection from 172.21.0.1 on port 1883. +1548240090: New client connected from 172.21.0.1 as mosqpub|10282-heretic (c1, k60, u'user1'). +1548240090: Client mosqpub|10282-heretic disconnected. +1548240090: New connection from 172.21.0.1 on port 1883. +1548240090: New client connected from 172.21.0.1 as mosqpub|10283-heretic (c1, k60, u'user1'). +1548240090: Client mosqpub|10283-heretic disconnected. +1548240091: New connection from 172.21.0.1 on port 1883. +1548240091: New client connected from 172.21.0.1 as mosqpub|10284-heretic (c1, k60, u'user1'). +1548240091: Client mosqpub|10284-heretic disconnected. +1548240091: New connection from 172.21.0.1 on port 1883. +1548240091: New client connected from 172.21.0.1 as mosqpub|10285-heretic (c1, k60, u'user1'). +1548240091: Client mosqpub|10285-heretic disconnected. +1548240092: New connection from 172.21.0.1 on port 1883. +1548240092: New client connected from 172.21.0.1 as mosqpub|10286-heretic (c1, k60, u'user1'). +1548240092: Client mosqpub|10286-heretic disconnected. +1548240092: New connection from 172.21.0.1 on port 1883. +1548240092: New client connected from 172.21.0.1 as mosqpub|10287-heretic (c1, k60, u'user1'). +1548240092: Client mosqpub|10287-heretic disconnected. +1548240093: New connection from 172.21.0.1 on port 1883. +1548240093: New client connected from 172.21.0.1 as mosqpub|10288-heretic (c1, k60, u'user1'). +1548240093: Client mosqpub|10288-heretic disconnected. +1548240093: New connection from 172.21.0.1 on port 1883. +1548240093: New client connected from 172.21.0.1 as mosqpub|10289-heretic (c1, k60, u'user1'). +1548240093: Client mosqpub|10289-heretic disconnected. +1548240094: New connection from 172.21.0.1 on port 1883. +1548240094: New client connected from 172.21.0.1 as mosqpub|10290-heretic (c1, k60, u'user1'). +1548240094: Client mosqpub|10290-heretic disconnected. +1548240094: New connection from 172.21.0.1 on port 1883. +1548240094: New client connected from 172.21.0.1 as mosqpub|10291-heretic (c1, k60, u'user1'). +1548240094: Client mosqpub|10291-heretic disconnected. +1548240095: New connection from 172.21.0.1 on port 1883. +1548240095: New client connected from 172.21.0.1 as mosqpub|10292-heretic (c1, k60, u'user1'). +1548240095: Client mosqpub|10292-heretic disconnected. +1548240095: New connection from 172.21.0.1 on port 1883. +1548240095: New client connected from 172.21.0.1 as mosqpub|10293-heretic (c1, k60, u'user1'). +1548240095: Client mosqpub|10293-heretic disconnected. +1548240096: New connection from 172.21.0.1 on port 1883. +1548240096: New client connected from 172.21.0.1 as mosqpub|10294-heretic (c1, k60, u'user1'). +1548240096: Client mosqpub|10294-heretic disconnected. +1548240096: New connection from 172.21.0.1 on port 1883. +1548240096: New client connected from 172.21.0.1 as mosqpub|10295-heretic (c1, k60, u'user1'). +1548240096: Client mosqpub|10295-heretic disconnected. +1548240097: New connection from 172.21.0.1 on port 1883. +1548240097: New client connected from 172.21.0.1 as mosqpub|10296-heretic (c1, k60, u'user1'). +1548240097: Client mosqpub|10296-heretic disconnected. +1548240097: New connection from 172.21.0.1 on port 1883. +1548240097: New client connected from 172.21.0.1 as mosqpub|10297-heretic (c1, k60, u'user1'). +1548240097: Client mosqpub|10297-heretic disconnected. +1548240098: New connection from 172.21.0.1 on port 1883. +1548240098: New client connected from 172.21.0.1 as mosqpub|10298-heretic (c1, k60, u'user1'). +1548240098: Client mosqpub|10298-heretic disconnected. +1548240098: New connection from 172.21.0.1 on port 1883. +1548240098: New client connected from 172.21.0.1 as mosqpub|10299-heretic (c1, k60, u'user1'). +1548240098: Client mosqpub|10299-heretic disconnected. +1548240099: New connection from 172.21.0.1 on port 1883. +1548240099: New client connected from 172.21.0.1 as mosqpub|10300-heretic (c1, k60, u'user1'). +1548240099: Client mosqpub|10300-heretic disconnected. +1548240099: New connection from 172.21.0.1 on port 1883. +1548240099: New client connected from 172.21.0.1 as mosqpub|10301-heretic (c1, k60, u'user1'). +1548240099: Client mosqpub|10301-heretic disconnected. +1548240100: New connection from 172.21.0.1 on port 1883. +1548240100: New client connected from 172.21.0.1 as mosqpub|10302-heretic (c1, k60, u'user1'). +1548240100: Client mosqpub|10302-heretic disconnected. +1548240100: New connection from 172.21.0.1 on port 1883. +1548240100: New client connected from 172.21.0.1 as mosqpub|10303-heretic (c1, k60, u'user1'). +1548240100: Client mosqpub|10303-heretic disconnected. +1548240101: New connection from 172.21.0.1 on port 1883. +1548240101: New client connected from 172.21.0.1 as mosqpub|10304-heretic (c1, k60, u'user1'). +1548240101: Client mosqpub|10304-heretic disconnected. +1548240101: New connection from 172.21.0.1 on port 1883. +1548240101: New client connected from 172.21.0.1 as mosqpub|10305-heretic (c1, k60, u'user1'). +1548240101: Client mosqpub|10305-heretic disconnected. +1548240102: New connection from 172.21.0.1 on port 1883. +1548240102: New client connected from 172.21.0.1 as mosqpub|10306-heretic (c1, k60, u'user1'). +1548240102: Client mosqpub|10306-heretic disconnected. +1548240102: New connection from 172.21.0.1 on port 1883. +1548240102: New client connected from 172.21.0.1 as mosqpub|10307-heretic (c1, k60, u'user1'). +1548240102: Client mosqpub|10307-heretic disconnected. +1548240103: New connection from 172.21.0.1 on port 1883. +1548240103: New client connected from 172.21.0.1 as mosqpub|10308-heretic (c1, k60, u'user1'). +1548240103: Client mosqpub|10308-heretic disconnected. +1548240103: New connection from 172.21.0.1 on port 1883. +1548240103: New client connected from 172.21.0.1 as mosqpub|10309-heretic (c1, k60, u'user1'). +1548240103: Client mosqpub|10309-heretic disconnected. +1548240104: New connection from 172.21.0.1 on port 1883. +1548240104: New client connected from 172.21.0.1 as mosqpub|10311-heretic (c1, k60, u'user1'). +1548240104: Client mosqpub|10311-heretic disconnected. +1548240104: New connection from 172.21.0.1 on port 1883. +1548240104: New client connected from 172.21.0.1 as mosqpub|10312-heretic (c1, k60, u'user1'). +1548240104: Client mosqpub|10312-heretic disconnected. +1548240105: New connection from 172.21.0.1 on port 1883. +1548240105: New client connected from 172.21.0.1 as mosqpub|10313-heretic (c1, k60, u'user1'). +1548240105: Client mosqpub|10313-heretic disconnected. +1548240105: New connection from 172.21.0.1 on port 1883. +1548240105: New client connected from 172.21.0.1 as mosqpub|10314-heretic (c1, k60, u'user1'). +1548240105: Client mosqpub|10314-heretic disconnected. +1548240106: New connection from 172.21.0.1 on port 1883. +1548240106: New client connected from 172.21.0.1 as mosqpub|10315-heretic (c1, k60, u'user1'). +1548240106: Client mosqpub|10315-heretic disconnected. +1548240106: New connection from 172.21.0.1 on port 1883. +1548240106: New client connected from 172.21.0.1 as mosqpub|10316-heretic (c1, k60, u'user1'). +1548240106: Client mosqpub|10316-heretic disconnected. +1548240107: New connection from 172.21.0.1 on port 1883. +1548240107: New client connected from 172.21.0.1 as mosqpub|10317-heretic (c1, k60, u'user1'). +1548240107: Client mosqpub|10317-heretic disconnected. +1548240107: New connection from 172.21.0.1 on port 1883. +1548240107: New client connected from 172.21.0.1 as mosqpub|10318-heretic (c1, k60, u'user1'). +1548240107: Client mosqpub|10318-heretic disconnected. +1548240108: New connection from 172.21.0.1 on port 1883. +1548240108: New client connected from 172.21.0.1 as mosqpub|10320-heretic (c1, k60, u'user1'). +1548240108: Client mosqpub|10320-heretic disconnected. +1548240108: New connection from 172.21.0.1 on port 1883. +1548240108: New client connected from 172.21.0.1 as mosqpub|10321-heretic (c1, k60, u'user1'). +1548240108: Client mosqpub|10321-heretic disconnected. +1548240109: New connection from 172.21.0.1 on port 1883. +1548240109: New client connected from 172.21.0.1 as mosqpub|10322-heretic (c1, k60, u'user1'). +1548240109: Client mosqpub|10322-heretic disconnected. +1548240109: New connection from 172.21.0.1 on port 1883. +1548240109: New client connected from 172.21.0.1 as mosqpub|10323-heretic (c1, k60, u'user1'). +1548240109: Client mosqpub|10323-heretic disconnected. +1548240110: New connection from 172.21.0.1 on port 1883. +1548240110: New client connected from 172.21.0.1 as mosqpub|10324-heretic (c1, k60, u'user1'). +1548240110: Client mosqpub|10324-heretic disconnected. +1548240110: New connection from 172.21.0.1 on port 1883. +1548240110: New client connected from 172.21.0.1 as mosqpub|10325-heretic (c1, k60, u'user1'). +1548240110: Client mosqpub|10325-heretic disconnected. +1548240111: New connection from 172.21.0.1 on port 1883. +1548240111: New client connected from 172.21.0.1 as mosqpub|10326-heretic (c1, k60, u'user1'). +1548240111: Client mosqpub|10326-heretic disconnected. +1548240111: New connection from 172.21.0.1 on port 1883. +1548240111: New client connected from 172.21.0.1 as mosqpub|10327-heretic (c1, k60, u'user1'). +1548240111: Client mosqpub|10327-heretic disconnected. +1548240112: New connection from 172.21.0.1 on port 1883. +1548240112: New client connected from 172.21.0.1 as mosqpub|10328-heretic (c1, k60, u'user1'). +1548240112: Client mosqpub|10328-heretic disconnected. +1548240113: New connection from 172.21.0.1 on port 1883. +1548240113: New client connected from 172.21.0.1 as mosqpub|10329-heretic (c1, k60, u'user1'). +1548240113: Client mosqpub|10329-heretic disconnected. +1548240113: New connection from 172.21.0.1 on port 1883. +1548240113: New client connected from 172.21.0.1 as mosqpub|10330-heretic (c1, k60, u'user1'). +1548240113: Client mosqpub|10330-heretic disconnected. +1548240114: New connection from 172.21.0.1 on port 1883. +1548240114: New client connected from 172.21.0.1 as mosqpub|10331-heretic (c1, k60, u'user1'). +1548240114: Client mosqpub|10331-heretic disconnected. +1548240114: New connection from 172.21.0.1 on port 1883. +1548240114: New client connected from 172.21.0.1 as mosqpub|10332-heretic (c1, k60, u'user1'). +1548240114: Client mosqpub|10332-heretic disconnected. +1548240115: New connection from 172.21.0.1 on port 1883. +1548240115: New client connected from 172.21.0.1 as mosqpub|10333-heretic (c1, k60, u'user1'). +1548240115: Client mosqpub|10333-heretic disconnected. +1548240115: New connection from 172.21.0.1 on port 1883. +1548240115: New client connected from 172.21.0.1 as mosqpub|10334-heretic (c1, k60, u'user1'). +1548240115: Client mosqpub|10334-heretic disconnected. +1548240116: New connection from 172.21.0.1 on port 1883. +1548240116: New client connected from 172.21.0.1 as mosqpub|10335-heretic (c1, k60, u'user1'). +1548240116: Client mosqpub|10335-heretic disconnected. +1548240116: New connection from 172.21.0.1 on port 1883. +1548240116: New client connected from 172.21.0.1 as mosqpub|10336-heretic (c1, k60, u'user1'). +1548240116: Client mosqpub|10336-heretic disconnected. +1548240117: New connection from 172.21.0.1 on port 1883. +1548240117: New client connected from 172.21.0.1 as mosqpub|10337-heretic (c1, k60, u'user1'). +1548240117: Client mosqpub|10337-heretic disconnected. +1548240117: New connection from 172.21.0.1 on port 1883. +1548240117: New client connected from 172.21.0.1 as mosqpub|10338-heretic (c1, k60, u'user1'). +1548240117: Client mosqpub|10338-heretic disconnected. +1548240118: New connection from 172.21.0.1 on port 1883. +1548240118: New client connected from 172.21.0.1 as mosqpub|10339-heretic (c1, k60, u'user1'). +1548240118: Client mosqpub|10339-heretic disconnected. +1548240118: New connection from 172.21.0.1 on port 1883. +1548240118: New client connected from 172.21.0.1 as mosqpub|10340-heretic (c1, k60, u'user1'). +1548240118: Client mosqpub|10340-heretic disconnected. +1548240119: New connection from 172.21.0.1 on port 1883. +1548240119: New client connected from 172.21.0.1 as mosqpub|10341-heretic (c1, k60, u'user1'). +1548240119: Client mosqpub|10341-heretic disconnected. +1548240119: New connection from 172.21.0.1 on port 1883. +1548240119: New client connected from 172.21.0.1 as mosqpub|10342-heretic (c1, k60, u'user1'). +1548240119: Client mosqpub|10342-heretic disconnected. +1548240120: New connection from 172.21.0.1 on port 1883. +1548240120: New client connected from 172.21.0.1 as mosqpub|10343-heretic (c1, k60, u'user1'). +1548240120: Client mosqpub|10343-heretic disconnected. +1548240120: New connection from 172.21.0.1 on port 1883. +1548240120: New client connected from 172.21.0.1 as mosqpub|10344-heretic (c1, k60, u'user1'). +1548240120: Client mosqpub|10344-heretic disconnected. +1548240121: New connection from 172.21.0.1 on port 1883. +1548240121: New client connected from 172.21.0.1 as mosqpub|10345-heretic (c1, k60, u'user1'). +1548240121: Client mosqpub|10345-heretic disconnected. +1548240121: New connection from 172.21.0.1 on port 1883. +1548240121: New client connected from 172.21.0.1 as mosqpub|10346-heretic (c1, k60, u'user1'). +1548240121: Client mosqpub|10346-heretic disconnected. +1548240122: New connection from 172.21.0.1 on port 1883. +1548240122: New client connected from 172.21.0.1 as mosqpub|10347-heretic (c1, k60, u'user1'). +1548240122: Client mosqpub|10347-heretic disconnected. +1548240122: New connection from 172.21.0.1 on port 1883. +1548240122: New client connected from 172.21.0.1 as mosqpub|10348-heretic (c1, k60, u'user1'). +1548240122: Client mosqpub|10348-heretic disconnected. +1548240123: New connection from 172.21.0.1 on port 1883. +1548240123: New client connected from 172.21.0.1 as mosqpub|10349-heretic (c1, k60, u'user1'). +1548240123: Client mosqpub|10349-heretic disconnected. +1548240123: New connection from 172.21.0.1 on port 1883. +1548240123: New client connected from 172.21.0.1 as mosqpub|10350-heretic (c1, k60, u'user1'). +1548240123: Client mosqpub|10350-heretic disconnected. +1548240124: New connection from 172.21.0.1 on port 1883. +1548240124: New client connected from 172.21.0.1 as mosqpub|10351-heretic (c1, k60, u'user1'). +1548240124: Client mosqpub|10351-heretic disconnected. +1548240124: New connection from 172.21.0.1 on port 1883. +1548240124: New client connected from 172.21.0.1 as mosqpub|10352-heretic (c1, k60, u'user1'). +1548240124: Client mosqpub|10352-heretic disconnected. +1548240125: New connection from 172.21.0.1 on port 1883. +1548240125: New client connected from 172.21.0.1 as mosqpub|10353-heretic (c1, k60, u'user1'). +1548240125: Client mosqpub|10353-heretic disconnected. +1548240125: New connection from 172.21.0.1 on port 1883. +1548240125: New client connected from 172.21.0.1 as mosqpub|10354-heretic (c1, k60, u'user1'). +1548240125: Client mosqpub|10354-heretic disconnected. +1548240126: New connection from 172.21.0.1 on port 1883. +1548240126: New client connected from 172.21.0.1 as mosqpub|10355-heretic (c1, k60, u'user1'). +1548240126: Client mosqpub|10355-heretic disconnected. +1548240126: New connection from 172.21.0.1 on port 1883. +1548240126: New client connected from 172.21.0.1 as mosqpub|10357-heretic (c1, k60, u'user1'). +1548240126: Client mosqpub|10357-heretic disconnected. +1548240127: New connection from 172.21.0.1 on port 1883. +1548240127: New client connected from 172.21.0.1 as mosqpub|10358-heretic (c1, k60, u'user1'). +1548240127: Client mosqpub|10358-heretic disconnected. +1548240127: New connection from 172.21.0.1 on port 1883. +1548240127: New client connected from 172.21.0.1 as mosqpub|10359-heretic (c1, k60, u'user1'). +1548240127: Client mosqpub|10359-heretic disconnected. +1548240128: New connection from 172.21.0.1 on port 1883. +1548240128: New client connected from 172.21.0.1 as mosqpub|10360-heretic (c1, k60, u'user1'). +1548240128: Client mosqpub|10360-heretic disconnected. +1548240128: New connection from 172.21.0.1 on port 1883. +1548240128: New client connected from 172.21.0.1 as mosqpub|10361-heretic (c1, k60, u'user1'). +1548240128: Client mosqpub|10361-heretic disconnected. +1548240129: New connection from 172.21.0.1 on port 1883. +1548240129: New client connected from 172.21.0.1 as mosqpub|10362-heretic (c1, k60, u'user1'). +1548240129: Client mosqpub|10362-heretic disconnected. +1548240129: New connection from 172.21.0.1 on port 1883. +1548240129: New client connected from 172.21.0.1 as mosqpub|10363-heretic (c1, k60, u'user1'). +1548240129: Client mosqpub|10363-heretic disconnected. +1548240130: New connection from 172.21.0.1 on port 1883. +1548240130: New client connected from 172.21.0.1 as mosqpub|10364-heretic (c1, k60, u'user1'). +1548240130: Client mosqpub|10364-heretic disconnected. +1548240130: New connection from 172.21.0.1 on port 1883. +1548240130: New client connected from 172.21.0.1 as mosqpub|10365-heretic (c1, k60, u'user1'). +1548240130: Client mosqpub|10365-heretic disconnected. +1548240131: New connection from 172.21.0.1 on port 1883. +1548240131: New client connected from 172.21.0.1 as mosqpub|10366-heretic (c1, k60, u'user1'). +1548240131: Client mosqpub|10366-heretic disconnected. +1548240131: New connection from 172.21.0.1 on port 1883. +1548240131: New client connected from 172.21.0.1 as mosqpub|10367-heretic (c1, k60, u'user1'). +1548240131: Client mosqpub|10367-heretic disconnected. +1548240132: New connection from 172.21.0.1 on port 1883. +1548240132: New client connected from 172.21.0.1 as mosqpub|10368-heretic (c1, k60, u'user1'). +1548240132: Client mosqpub|10368-heretic disconnected. +1548240132: New connection from 172.21.0.1 on port 1883. +1548240132: New client connected from 172.21.0.1 as mosqpub|10369-heretic (c1, k60, u'user1'). +1548240132: Client mosqpub|10369-heretic disconnected. +1548240133: New connection from 172.21.0.1 on port 1883. +1548240133: New client connected from 172.21.0.1 as mosqpub|10370-heretic (c1, k60, u'user1'). +1548240133: Client mosqpub|10370-heretic disconnected. +1548240133: New connection from 172.21.0.1 on port 1883. +1548240133: New client connected from 172.21.0.1 as mosqpub|10371-heretic (c1, k60, u'user1'). +1548240133: Client mosqpub|10371-heretic disconnected. +1548240134: New connection from 172.21.0.1 on port 1883. +1548240134: New client connected from 172.21.0.1 as mosqpub|10372-heretic (c1, k60, u'user1'). +1548240134: Client mosqpub|10372-heretic disconnected. +1548240134: New connection from 172.21.0.1 on port 1883. +1548240134: New client connected from 172.21.0.1 as mosqpub|10373-heretic (c1, k60, u'user1'). +1548240134: Client mosqpub|10373-heretic disconnected. +1548240135: New connection from 172.21.0.1 on port 1883. +1548240135: New client connected from 172.21.0.1 as mosqpub|10374-heretic (c1, k60, u'user1'). +1548240135: Client mosqpub|10374-heretic disconnected. +1548240135: New connection from 172.21.0.1 on port 1883. +1548240135: New client connected from 172.21.0.1 as mosqpub|10375-heretic (c1, k60, u'user1'). +1548240135: Client mosqpub|10375-heretic disconnected. +1548240136: New connection from 172.21.0.1 on port 1883. +1548240136: New client connected from 172.21.0.1 as mosqpub|10376-heretic (c1, k60, u'user1'). +1548240136: Client mosqpub|10376-heretic disconnected. +1548240136: New connection from 172.21.0.1 on port 1883. +1548240136: New client connected from 172.21.0.1 as mosqpub|10377-heretic (c1, k60, u'user1'). +1548240136: Client mosqpub|10377-heretic disconnected. +1548240137: New connection from 172.21.0.1 on port 1883. +1548240137: New client connected from 172.21.0.1 as mosqpub|10378-heretic (c1, k60, u'user1'). +1548240137: Client mosqpub|10378-heretic disconnected. +1548240137: New connection from 172.21.0.1 on port 1883. +1548240137: New client connected from 172.21.0.1 as mosqpub|10379-heretic (c1, k60, u'user1'). +1548240137: Client mosqpub|10379-heretic disconnected. +1548240138: New connection from 172.21.0.1 on port 1883. +1548240138: New client connected from 172.21.0.1 as mosqpub|10380-heretic (c1, k60, u'user1'). +1548240138: Client mosqpub|10380-heretic disconnected. +1548240138: New connection from 172.21.0.1 on port 1883. +1548240138: New client connected from 172.21.0.1 as mosqpub|10381-heretic (c1, k60, u'user1'). +1548240138: Client mosqpub|10381-heretic disconnected. +1548240139: New connection from 172.21.0.1 on port 1883. +1548240139: New client connected from 172.21.0.1 as mosqpub|10382-heretic (c1, k60, u'user1'). +1548240139: Client mosqpub|10382-heretic disconnected. +1548240139: New connection from 172.21.0.1 on port 1883. +1548240139: New client connected from 172.21.0.1 as mosqpub|10383-heretic (c1, k60, u'user1'). +1548240139: Client mosqpub|10383-heretic disconnected. +1548240140: New connection from 172.21.0.1 on port 1883. +1548240140: New client connected from 172.21.0.1 as mosqpub|10384-heretic (c1, k60, u'user1'). +1548240140: Client mosqpub|10384-heretic disconnected. +1548240140: New connection from 172.21.0.1 on port 1883. +1548240140: New client connected from 172.21.0.1 as mosqpub|10385-heretic (c1, k60, u'user1'). +1548240140: Client mosqpub|10385-heretic disconnected. +1548240141: New connection from 172.21.0.1 on port 1883. +1548240141: New client connected from 172.21.0.1 as mosqpub|10386-heretic (c1, k60, u'user1'). +1548240141: Client mosqpub|10386-heretic disconnected. +1548240141: New connection from 172.21.0.1 on port 1883. +1548240141: New client connected from 172.21.0.1 as mosqpub|10387-heretic (c1, k60, u'user1'). +1548240141: Client mosqpub|10387-heretic disconnected. +1548240142: New connection from 172.21.0.1 on port 1883. +1548240142: New client connected from 172.21.0.1 as mosqpub|10388-heretic (c1, k60, u'user1'). +1548240142: Client mosqpub|10388-heretic disconnected. +1548240142: New connection from 172.21.0.1 on port 1883. +1548240142: New client connected from 172.21.0.1 as mosqpub|10389-heretic (c1, k60, u'user1'). +1548240142: Client mosqpub|10389-heretic disconnected. +1548240143: New connection from 172.21.0.1 on port 1883. +1548240143: New client connected from 172.21.0.1 as mosqpub|10390-heretic (c1, k60, u'user1'). +1548240143: Client mosqpub|10390-heretic disconnected. +1548240143: New connection from 172.21.0.1 on port 1883. +1548240143: New client connected from 172.21.0.1 as mosqpub|10391-heretic (c1, k60, u'user1'). +1548240143: Client mosqpub|10391-heretic disconnected. +1548240144: New connection from 172.21.0.1 on port 1883. +1548240144: New client connected from 172.21.0.1 as mosqpub|10392-heretic (c1, k60, u'user1'). +1548240144: Client mosqpub|10392-heretic disconnected. +1548240144: New connection from 172.21.0.1 on port 1883. +1548240144: New client connected from 172.21.0.1 as mosqpub|10393-heretic (c1, k60, u'user1'). +1548240144: Client mosqpub|10393-heretic disconnected. +1548240145: New connection from 172.21.0.1 on port 1883. +1548240145: New client connected from 172.21.0.1 as mosqpub|10394-heretic (c1, k60, u'user1'). +1548240145: Client mosqpub|10394-heretic disconnected. +1548240145: New connection from 172.21.0.1 on port 1883. +1548240145: New client connected from 172.21.0.1 as mosqpub|10395-heretic (c1, k60, u'user1'). +1548240145: Client mosqpub|10395-heretic disconnected. +1548240146: New connection from 172.21.0.1 on port 1883. +1548240146: New client connected from 172.21.0.1 as mosqpub|10396-heretic (c1, k60, u'user1'). +1548240146: Client mosqpub|10396-heretic disconnected. +1548240146: New connection from 172.21.0.1 on port 1883. +1548240146: New client connected from 172.21.0.1 as mosqpub|10397-heretic (c1, k60, u'user1'). +1548240146: Client mosqpub|10397-heretic disconnected. +1548240147: New connection from 172.21.0.1 on port 1883. +1548240147: New client connected from 172.21.0.1 as mosqpub|10398-heretic (c1, k60, u'user1'). +1548240147: Client mosqpub|10398-heretic disconnected. +1548240147: New connection from 172.21.0.1 on port 1883. +1548240147: New client connected from 172.21.0.1 as mosqpub|10399-heretic (c1, k60, u'user1'). +1548240147: Client mosqpub|10399-heretic disconnected. +1548240148: New connection from 172.21.0.1 on port 1883. +1548240148: New client connected from 172.21.0.1 as mosqpub|10400-heretic (c1, k60, u'user1'). +1548240148: Client mosqpub|10400-heretic disconnected. +1548240148: New connection from 172.21.0.1 on port 1883. +1548240148: New client connected from 172.21.0.1 as mosqpub|10401-heretic (c1, k60, u'user1'). +1548240148: Client mosqpub|10401-heretic disconnected. +1548240149: New connection from 172.21.0.1 on port 1883. +1548240149: New client connected from 172.21.0.1 as mosqpub|10402-heretic (c1, k60, u'user1'). +1548240149: Client mosqpub|10402-heretic disconnected. +1548240149: New connection from 172.21.0.1 on port 1883. +1548240149: New client connected from 172.21.0.1 as mosqpub|10403-heretic (c1, k60, u'user1'). +1548240149: Client mosqpub|10403-heretic disconnected. +1548240150: New connection from 172.21.0.1 on port 1883. +1548240150: New client connected from 172.21.0.1 as mosqpub|10404-heretic (c1, k60, u'user1'). +1548240150: Client mosqpub|10404-heretic disconnected. +1548240151: New connection from 172.21.0.1 on port 1883. +1548240151: New client connected from 172.21.0.1 as mosqpub|10405-heretic (c1, k60, u'user1'). +1548240151: Client mosqpub|10405-heretic disconnected. +1548240151: New connection from 172.21.0.1 on port 1883. +1548240151: New client connected from 172.21.0.1 as mosqpub|10406-heretic (c1, k60, u'user1'). +1548240151: Client mosqpub|10406-heretic disconnected. +1548240152: New connection from 172.21.0.1 on port 1883. +1548240152: New client connected from 172.21.0.1 as mosqpub|10407-heretic (c1, k60, u'user1'). +1548240152: Client mosqpub|10407-heretic disconnected. +1548240152: New connection from 172.21.0.1 on port 1883. +1548240152: New client connected from 172.21.0.1 as mosqpub|10409-heretic (c1, k60, u'user1'). +1548240152: Client mosqpub|10409-heretic disconnected. +1548240153: New connection from 172.21.0.1 on port 1883. +1548240153: New client connected from 172.21.0.1 as mosqpub|10410-heretic (c1, k60, u'user1'). +1548240153: Client mosqpub|10410-heretic disconnected. +1548240153: New connection from 172.21.0.1 on port 1883. +1548240153: New client connected from 172.21.0.1 as mosqpub|10411-heretic (c1, k60, u'user1'). +1548240153: Client mosqpub|10411-heretic disconnected. +1548240154: New connection from 172.21.0.1 on port 1883. +1548240154: New client connected from 172.21.0.1 as mosqpub|10412-heretic (c1, k60, u'user1'). +1548240154: Client mosqpub|10412-heretic disconnected. +1548240154: New connection from 172.21.0.1 on port 1883. +1548240154: New client connected from 172.21.0.1 as mosqpub|10413-heretic (c1, k60, u'user1'). +1548240154: Client mosqpub|10413-heretic disconnected. +1548240155: New connection from 172.21.0.1 on port 1883. +1548240155: New client connected from 172.21.0.1 as mosqpub|10414-heretic (c1, k60, u'user1'). +1548240155: Client mosqpub|10414-heretic disconnected. +1548240155: New connection from 172.21.0.1 on port 1883. +1548240155: New client connected from 172.21.0.1 as mosqpub|10415-heretic (c1, k60, u'user1'). +1548240155: Client mosqpub|10415-heretic disconnected. +1548240156: New connection from 172.21.0.1 on port 1883. +1548240156: New client connected from 172.21.0.1 as mosqpub|10416-heretic (c1, k60, u'user1'). +1548240156: Client mosqpub|10416-heretic disconnected. +1548240156: New connection from 172.21.0.1 on port 1883. +1548240156: New client connected from 172.21.0.1 as mosqpub|10417-heretic (c1, k60, u'user1'). +1548240156: Client mosqpub|10417-heretic disconnected. +1548240157: New connection from 172.21.0.1 on port 1883. +1548240157: New client connected from 172.21.0.1 as mosqpub|10418-heretic (c1, k60, u'user1'). +1548240157: Client mosqpub|10418-heretic disconnected. +1548240157: New connection from 172.21.0.1 on port 1883. +1548240157: New client connected from 172.21.0.1 as mosqpub|10419-heretic (c1, k60, u'user1'). +1548240157: Client mosqpub|10419-heretic disconnected. +1548240158: New connection from 172.21.0.1 on port 1883. +1548240158: New client connected from 172.21.0.1 as mosqpub|10420-heretic (c1, k60, u'user1'). +1548240158: Client mosqpub|10420-heretic disconnected. +1548240158: New connection from 172.21.0.1 on port 1883. +1548240158: New client connected from 172.21.0.1 as mosqpub|10421-heretic (c1, k60, u'user1'). +1548240158: Client mosqpub|10421-heretic disconnected. +1548240159: New connection from 172.21.0.1 on port 1883. +1548240159: New client connected from 172.21.0.1 as mosqpub|10422-heretic (c1, k60, u'user1'). +1548240159: Client mosqpub|10422-heretic disconnected. +1548240159: New connection from 172.21.0.1 on port 1883. +1548240159: New client connected from 172.21.0.1 as mosqpub|10423-heretic (c1, k60, u'user1'). +1548240159: Client mosqpub|10423-heretic disconnected. +1548240160: New connection from 172.21.0.1 on port 1883. +1548240160: New client connected from 172.21.0.1 as mosqpub|10424-heretic (c1, k60, u'user1'). +1548240160: Client mosqpub|10424-heretic disconnected. +1548240160: New connection from 172.21.0.1 on port 1883. +1548240160: New client connected from 172.21.0.1 as mosqpub|10425-heretic (c1, k60, u'user1'). +1548240160: Client mosqpub|10425-heretic disconnected. +1548240161: New connection from 172.21.0.1 on port 1883. +1548240161: New client connected from 172.21.0.1 as mosqpub|10426-heretic (c1, k60, u'user1'). +1548240161: Client mosqpub|10426-heretic disconnected. +1548240161: New connection from 172.21.0.1 on port 1883. +1548240161: New client connected from 172.21.0.1 as mosqpub|10427-heretic (c1, k60, u'user1'). +1548240161: Client mosqpub|10427-heretic disconnected. +1548240162: New connection from 172.21.0.1 on port 1883. +1548240162: New client connected from 172.21.0.1 as mosqpub|10428-heretic (c1, k60, u'user1'). +1548240162: Client mosqpub|10428-heretic disconnected. +1548240162: New connection from 172.21.0.1 on port 1883. +1548240162: New client connected from 172.21.0.1 as mosqpub|10430-heretic (c1, k60, u'user1'). +1548240162: Client mosqpub|10430-heretic disconnected. +1548240163: New connection from 172.21.0.1 on port 1883. +1548240163: New client connected from 172.21.0.1 as mosqpub|10431-heretic (c1, k60, u'user1'). +1548240163: Client mosqpub|10431-heretic disconnected. +1548240163: New connection from 172.21.0.1 on port 1883. +1548240163: New client connected from 172.21.0.1 as mosqpub|10432-heretic (c1, k60, u'user1'). +1548240163: Client mosqpub|10432-heretic disconnected. +1548240164: New connection from 172.21.0.1 on port 1883. +1548240164: New client connected from 172.21.0.1 as mosqpub|10433-heretic (c1, k60, u'user1'). +1548240164: Client mosqpub|10433-heretic disconnected. +1548240164: New connection from 172.21.0.1 on port 1883. +1548240164: New client connected from 172.21.0.1 as mosqpub|10434-heretic (c1, k60, u'user1'). +1548240164: Client mosqpub|10434-heretic disconnected. +1548240165: New connection from 172.21.0.1 on port 1883. +1548240165: New client connected from 172.21.0.1 as mosqpub|10435-heretic (c1, k60, u'user1'). +1548240165: Client mosqpub|10435-heretic disconnected. +1548240165: New connection from 172.21.0.1 on port 1883. +1548240165: New client connected from 172.21.0.1 as mosqpub|10436-heretic (c1, k60, u'user1'). +1548240165: Client mosqpub|10436-heretic disconnected. +1548240166: New connection from 172.21.0.1 on port 1883. +1548240166: New client connected from 172.21.0.1 as mosqpub|10437-heretic (c1, k60, u'user1'). +1548240166: Client mosqpub|10437-heretic disconnected. +1548240166: New connection from 172.21.0.1 on port 1883. +1548240166: New client connected from 172.21.0.1 as mosqpub|10438-heretic (c1, k60, u'user1'). +1548240166: Client mosqpub|10438-heretic disconnected. +1548240167: New connection from 172.21.0.1 on port 1883. +1548240167: New client connected from 172.21.0.1 as mosqpub|10439-heretic (c1, k60, u'user1'). +1548240167: Client mosqpub|10439-heretic disconnected. +1548240167: New connection from 172.21.0.1 on port 1883. +1548240167: New client connected from 172.21.0.1 as mosqpub|10440-heretic (c1, k60, u'user1'). +1548240167: Client mosqpub|10440-heretic disconnected. +1548240168: New connection from 172.21.0.1 on port 1883. +1548240168: New client connected from 172.21.0.1 as mosqpub|10441-heretic (c1, k60, u'user1'). +1548240168: Client mosqpub|10441-heretic disconnected. +1548240168: New connection from 172.21.0.1 on port 1883. +1548240168: New client connected from 172.21.0.1 as mosqpub|10442-heretic (c1, k60, u'user1'). +1548240168: Client mosqpub|10442-heretic disconnected. +1548240169: New connection from 172.21.0.1 on port 1883. +1548240169: New client connected from 172.21.0.1 as mosqpub|10443-heretic (c1, k60, u'user1'). +1548240169: Client mosqpub|10443-heretic disconnected. +1548240169: New connection from 172.21.0.1 on port 1883. +1548240169: New client connected from 172.21.0.1 as mosqpub|10444-heretic (c1, k60, u'user1'). +1548240169: Client mosqpub|10444-heretic disconnected. +1548240170: New connection from 172.21.0.1 on port 1883. +1548240170: New client connected from 172.21.0.1 as mosqpub|10445-heretic (c1, k60, u'user1'). +1548240170: Client mosqpub|10445-heretic disconnected. +1548240170: New connection from 172.21.0.1 on port 1883. +1548240170: New client connected from 172.21.0.1 as mosqpub|10446-heretic (c1, k60, u'user1'). +1548240170: Client mosqpub|10446-heretic disconnected. +1548240171: New connection from 172.21.0.1 on port 1883. +1548240171: New client connected from 172.21.0.1 as mosqpub|10447-heretic (c1, k60, u'user1'). +1548240171: Client mosqpub|10447-heretic disconnected. +1548240171: New connection from 172.21.0.1 on port 1883. +1548240171: New client connected from 172.21.0.1 as mosqpub|10448-heretic (c1, k60, u'user1'). +1548240171: Client mosqpub|10448-heretic disconnected. +1548240172: New connection from 172.21.0.1 on port 1883. +1548240172: New client connected from 172.21.0.1 as mosqpub|10449-heretic (c1, k60, u'user1'). +1548240172: Client mosqpub|10449-heretic disconnected. +1548240172: New connection from 172.21.0.1 on port 1883. +1548240172: New client connected from 172.21.0.1 as mosqpub|10450-heretic (c1, k60, u'user1'). +1548240172: Client mosqpub|10450-heretic disconnected. +1548240173: New connection from 172.21.0.1 on port 1883. +1548240173: New client connected from 172.21.0.1 as mosqpub|10451-heretic (c1, k60, u'user1'). +1548240173: Client mosqpub|10451-heretic disconnected. +1548240173: New connection from 172.21.0.1 on port 1883. +1548240173: New client connected from 172.21.0.1 as mosqpub|10452-heretic (c1, k60, u'user1'). +1548240173: Client mosqpub|10452-heretic disconnected. +1548240174: New connection from 172.21.0.1 on port 1883. +1548240174: New client connected from 172.21.0.1 as mosqpub|10453-heretic (c1, k60, u'user1'). +1548240174: Client mosqpub|10453-heretic disconnected. +1548240174: New connection from 172.21.0.1 on port 1883. +1548240174: New client connected from 172.21.0.1 as mosqpub|10454-heretic (c1, k60, u'user1'). +1548240174: Client mosqpub|10454-heretic disconnected. +1548240175: New connection from 172.21.0.1 on port 1883. +1548240175: New client connected from 172.21.0.1 as mosqpub|10455-heretic (c1, k60, u'user1'). +1548240175: Client mosqpub|10455-heretic disconnected. +1548240175: New connection from 172.21.0.1 on port 1883. +1548240175: New client connected from 172.21.0.1 as mosqpub|10456-heretic (c1, k60, u'user1'). +1548240175: Client mosqpub|10456-heretic disconnected. +1548240176: New connection from 172.21.0.1 on port 1883. +1548240176: New client connected from 172.21.0.1 as mosqpub|10457-heretic (c1, k60, u'user1'). +1548240176: Client mosqpub|10457-heretic disconnected. +1548240176: New connection from 172.21.0.1 on port 1883. +1548240176: New client connected from 172.21.0.1 as mosqpub|10458-heretic (c1, k60, u'user1'). +1548240176: Client mosqpub|10458-heretic disconnected. +1548240177: New connection from 172.21.0.1 on port 1883. +1548240177: New client connected from 172.21.0.1 as mosqpub|10459-heretic (c1, k60, u'user1'). +1548240177: Client mosqpub|10459-heretic disconnected. +1548240177: New connection from 172.21.0.1 on port 1883. +1548240177: New client connected from 172.21.0.1 as mosqpub|10460-heretic (c1, k60, u'user1'). +1548240177: Client mosqpub|10460-heretic disconnected. +1548240178: New connection from 172.21.0.1 on port 1883. +1548240178: New client connected from 172.21.0.1 as mosqpub|10461-heretic (c1, k60, u'user1'). +1548240178: Client mosqpub|10461-heretic disconnected. +1548240178: New connection from 172.21.0.1 on port 1883. +1548240178: New client connected from 172.21.0.1 as mosqpub|10462-heretic (c1, k60, u'user1'). +1548240178: Client mosqpub|10462-heretic disconnected. +1548240179: New connection from 172.21.0.1 on port 1883. +1548240179: New client connected from 172.21.0.1 as mosqpub|10463-heretic (c1, k60, u'user1'). +1548240179: Client mosqpub|10463-heretic disconnected. +1548240179: New connection from 172.21.0.1 on port 1883. +1548240179: New client connected from 172.21.0.1 as mosqpub|10464-heretic (c1, k60, u'user1'). +1548240179: Client mosqpub|10464-heretic disconnected. +1548240180: New connection from 172.21.0.1 on port 1883. +1548240180: New client connected from 172.21.0.1 as mosqpub|10465-heretic (c1, k60, u'user1'). +1548240180: Client mosqpub|10465-heretic disconnected. +1548240180: New connection from 172.21.0.1 on port 1883. +1548240180: New client connected from 172.21.0.1 as mosqpub|10466-heretic (c1, k60, u'user1'). +1548240180: Client mosqpub|10466-heretic disconnected. +1548240181: New connection from 172.21.0.1 on port 1883. +1548240181: New client connected from 172.21.0.1 as mosqpub|10467-heretic (c1, k60, u'user1'). +1548240181: Client mosqpub|10467-heretic disconnected. +1548240181: New connection from 172.21.0.1 on port 1883. +1548240181: New client connected from 172.21.0.1 as mosqpub|10468-heretic (c1, k60, u'user1'). +1548240181: Client mosqpub|10468-heretic disconnected. +1548240182: New connection from 172.21.0.1 on port 1883. +1548240182: New client connected from 172.21.0.1 as mosqpub|10469-heretic (c1, k60, u'user1'). +1548240182: Client mosqpub|10469-heretic disconnected. +1548240182: New connection from 172.21.0.1 on port 1883. +1548240182: New client connected from 172.21.0.1 as mosqpub|10470-heretic (c1, k60, u'user1'). +1548240182: Client mosqpub|10470-heretic disconnected. +1548240183: New connection from 172.21.0.1 on port 1883. +1548240183: New client connected from 172.21.0.1 as mosqpub|10471-heretic (c1, k60, u'user1'). +1548240183: Client mosqpub|10471-heretic disconnected. +1548240183: New connection from 172.21.0.1 on port 1883. +1548240183: New client connected from 172.21.0.1 as mosqpub|10472-heretic (c1, k60, u'user1'). +1548240183: Client mosqpub|10472-heretic disconnected. +1548240184: New connection from 172.21.0.1 on port 1883. +1548240184: New client connected from 172.21.0.1 as mosqpub|10473-heretic (c1, k60, u'user1'). +1548240184: Client mosqpub|10473-heretic disconnected. +1548240184: New connection from 172.21.0.1 on port 1883. +1548240184: New client connected from 172.21.0.1 as mosqpub|10474-heretic (c1, k60, u'user1'). +1548240184: Client mosqpub|10474-heretic disconnected. +1548240185: New connection from 172.21.0.1 on port 1883. +1548240185: New client connected from 172.21.0.1 as mosqpub|10475-heretic (c1, k60, u'user1'). +1548240185: Client mosqpub|10475-heretic disconnected. +1548240185: New connection from 172.21.0.1 on port 1883. +1548240185: New client connected from 172.21.0.1 as mosqpub|10476-heretic (c1, k60, u'user1'). +1548240185: Client mosqpub|10476-heretic disconnected. +1548240186: New connection from 172.21.0.1 on port 1883. +1548240186: New client connected from 172.21.0.1 as mosqpub|10477-heretic (c1, k60, u'user1'). +1548240186: Client mosqpub|10477-heretic disconnected. +1548240186: New connection from 172.21.0.1 on port 1883. +1548240186: New client connected from 172.21.0.1 as mosqpub|10478-heretic (c1, k60, u'user1'). +1548240186: Client mosqpub|10478-heretic disconnected. +1548240187: New connection from 172.21.0.1 on port 1883. +1548240187: New client connected from 172.21.0.1 as mosqpub|10479-heretic (c1, k60, u'user1'). +1548240187: Client mosqpub|10479-heretic disconnected. +1548240187: New connection from 172.21.0.1 on port 1883. +1548240187: New client connected from 172.21.0.1 as mosqpub|10480-heretic (c1, k60, u'user1'). +1548240187: Client mosqpub|10480-heretic disconnected. +1548240188: New connection from 172.21.0.1 on port 1883. +1548240188: New client connected from 172.21.0.1 as mosqpub|10481-heretic (c1, k60, u'user1'). +1548240188: Client mosqpub|10481-heretic disconnected. +1548240188: New connection from 172.21.0.1 on port 1883. +1548240188: New client connected from 172.21.0.1 as mosqpub|10482-heretic (c1, k60, u'user1'). +1548240188: Client mosqpub|10482-heretic disconnected. +1548240189: New connection from 172.21.0.1 on port 1883. +1548240189: New client connected from 172.21.0.1 as mosqpub|10483-heretic (c1, k60, u'user1'). +1548240189: Client mosqpub|10483-heretic disconnected. +1548240189: New connection from 172.21.0.1 on port 1883. +1548240189: New client connected from 172.21.0.1 as mosqpub|10484-heretic (c1, k60, u'user1'). +1548240189: Client mosqpub|10484-heretic disconnected. +1548240190: New connection from 172.21.0.1 on port 1883. +1548240190: New client connected from 172.21.0.1 as mosqpub|10485-heretic (c1, k60, u'user1'). +1548240190: Client mosqpub|10485-heretic disconnected. +1548240191: New connection from 172.21.0.1 on port 1883. +1548240191: New client connected from 172.21.0.1 as mosqpub|10486-heretic (c1, k60, u'user1'). +1548240191: Client mosqpub|10486-heretic disconnected. +1548240191: New connection from 172.21.0.1 on port 1883. +1548240191: New client connected from 172.21.0.1 as mosqpub|10487-heretic (c1, k60, u'user1'). +1548240191: Client mosqpub|10487-heretic disconnected. +1548240192: New connection from 172.21.0.1 on port 1883. +1548240192: New client connected from 172.21.0.1 as mosqpub|10488-heretic (c1, k60, u'user1'). +1548240192: Client mosqpub|10488-heretic disconnected. +1548240192: New connection from 172.21.0.1 on port 1883. +1548240192: New client connected from 172.21.0.1 as mosqpub|10489-heretic (c1, k60, u'user1'). +1548240192: Client mosqpub|10489-heretic disconnected. +1548240193: New connection from 172.21.0.1 on port 1883. +1548240193: New client connected from 172.21.0.1 as mosqpub|10490-heretic (c1, k60, u'user1'). +1548240193: Client mosqpub|10490-heretic disconnected. +1548240193: New connection from 172.21.0.1 on port 1883. +1548240193: New client connected from 172.21.0.1 as mosqpub|10491-heretic (c1, k60, u'user1'). +1548240193: Client mosqpub|10491-heretic disconnected. +1548240194: New connection from 172.21.0.1 on port 1883. +1548240194: New client connected from 172.21.0.1 as mosqpub|10492-heretic (c1, k60, u'user1'). +1548240194: Client mosqpub|10492-heretic disconnected. +1548240194: New connection from 172.21.0.1 on port 1883. +1548240194: New client connected from 172.21.0.1 as mosqpub|10493-heretic (c1, k60, u'user1'). +1548240194: Client mosqpub|10493-heretic disconnected. +1548240195: New connection from 172.21.0.1 on port 1883. +1548240195: New client connected from 172.21.0.1 as mosqpub|10494-heretic (c1, k60, u'user1'). +1548240195: Client mosqpub|10494-heretic disconnected. +1548240195: New connection from 172.21.0.1 on port 1883. +1548240195: New client connected from 172.21.0.1 as mosqpub|10495-heretic (c1, k60, u'user1'). +1548240195: Client mosqpub|10495-heretic disconnected. +1548240196: New connection from 172.21.0.1 on port 1883. +1548240196: New client connected from 172.21.0.1 as mosqpub|10496-heretic (c1, k60, u'user1'). +1548240196: Client mosqpub|10496-heretic disconnected. +1548240196: New connection from 172.21.0.1 on port 1883. +1548240196: New client connected from 172.21.0.1 as mosqpub|10497-heretic (c1, k60, u'user1'). +1548240196: Client mosqpub|10497-heretic disconnected. +1548240197: New connection from 172.21.0.1 on port 1883. +1548240197: New client connected from 172.21.0.1 as mosqpub|10498-heretic (c1, k60, u'user1'). +1548240197: Client mosqpub|10498-heretic disconnected. +1548240197: New connection from 172.21.0.1 on port 1883. +1548240197: New client connected from 172.21.0.1 as mosqpub|10499-heretic (c1, k60, u'user1'). +1548240197: Client mosqpub|10499-heretic disconnected. +1548240198: New connection from 172.21.0.1 on port 1883. +1548240198: New client connected from 172.21.0.1 as mosqpub|10500-heretic (c1, k60, u'user1'). +1548240198: Client mosqpub|10500-heretic disconnected. +1548240198: New connection from 172.21.0.1 on port 1883. +1548240198: New client connected from 172.21.0.1 as mosqpub|10501-heretic (c1, k60, u'user1'). +1548240198: Client mosqpub|10501-heretic disconnected. +1548240199: New connection from 172.21.0.1 on port 1883. +1548240199: New client connected from 172.21.0.1 as mosqpub|10502-heretic (c1, k60, u'user1'). +1548240199: Client mosqpub|10502-heretic disconnected. +1548240199: New connection from 172.21.0.1 on port 1883. +1548240199: New client connected from 172.21.0.1 as mosqpub|10503-heretic (c1, k60, u'user1'). +1548240199: Client mosqpub|10503-heretic disconnected. +1548240200: New connection from 172.21.0.1 on port 1883. +1548240200: New client connected from 172.21.0.1 as mosqpub|10504-heretic (c1, k60, u'user1'). +1548240200: Client mosqpub|10504-heretic disconnected. +1548240200: New connection from 172.21.0.1 on port 1883. +1548240200: New client connected from 172.21.0.1 as mosqpub|10505-heretic (c1, k60, u'user1'). +1548240200: Client mosqpub|10505-heretic disconnected. +1548240201: New connection from 172.21.0.1 on port 1883. +1548240201: New client connected from 172.21.0.1 as mosqpub|10506-heretic (c1, k60, u'user1'). +1548240201: Client mosqpub|10506-heretic disconnected. +1548240201: New connection from 172.21.0.1 on port 1883. +1548240201: New client connected from 172.21.0.1 as mosqpub|10507-heretic (c1, k60, u'user1'). +1548240201: Client mosqpub|10507-heretic disconnected. +1548240202: New connection from 172.21.0.1 on port 1883. +1548240202: New client connected from 172.21.0.1 as mosqpub|10508-heretic (c1, k60, u'user1'). +1548240202: Client mosqpub|10508-heretic disconnected. +1548240202: New connection from 172.21.0.1 on port 1883. +1548240202: New client connected from 172.21.0.1 as mosqpub|10509-heretic (c1, k60, u'user1'). +1548240202: Client mosqpub|10509-heretic disconnected. +1548240203: New connection from 172.21.0.1 on port 1883. +1548240203: New client connected from 172.21.0.1 as mosqpub|10510-heretic (c1, k60, u'user1'). +1548240203: Client mosqpub|10510-heretic disconnected. +1548240203: New connection from 172.21.0.1 on port 1883. +1548240203: New client connected from 172.21.0.1 as mosqpub|10511-heretic (c1, k60, u'user1'). +1548240203: Client mosqpub|10511-heretic disconnected. +1548240204: New connection from 172.21.0.1 on port 1883. +1548240204: New client connected from 172.21.0.1 as mosqpub|10512-heretic (c1, k60, u'user1'). +1548240204: Client mosqpub|10512-heretic disconnected. +1548240204: New connection from 172.21.0.1 on port 1883. +1548240204: New client connected from 172.21.0.1 as mosqpub|10513-heretic (c1, k60, u'user1'). +1548240204: Client mosqpub|10513-heretic disconnected. +1548240205: New connection from 172.21.0.1 on port 1883. +1548240205: New client connected from 172.21.0.1 as mosqpub|10514-heretic (c1, k60, u'user1'). +1548240205: Client mosqpub|10514-heretic disconnected. +1548240205: New connection from 172.21.0.1 on port 1883. +1548240205: New client connected from 172.21.0.1 as mosqpub|10515-heretic (c1, k60, u'user1'). +1548240205: Client mosqpub|10515-heretic disconnected. +1548240206: New connection from 172.21.0.1 on port 1883. +1548240206: New client connected from 172.21.0.1 as mosqpub|10520-heretic (c1, k60, u'user1'). +1548240206: Client mosqpub|10520-heretic disconnected. +1548240206: New connection from 172.21.0.1 on port 1883. +1548240206: New client connected from 172.21.0.1 as mosqpub|10522-heretic (c1, k60, u'user1'). +1548240206: Client mosqpub|10522-heretic disconnected. +1548240207: New connection from 172.21.0.1 on port 1883. +1548240207: New client connected from 172.21.0.1 as mosqpub|10523-heretic (c1, k60, u'user1'). +1548240207: Client mosqpub|10523-heretic disconnected. +1548240207: New connection from 172.21.0.1 on port 1883. +1548240207: New client connected from 172.21.0.1 as mosqpub|10524-heretic (c1, k60, u'user1'). +1548240207: Client mosqpub|10524-heretic disconnected. +1548240208: New connection from 172.21.0.1 on port 1883. +1548240208: New client connected from 172.21.0.1 as mosqpub|10525-heretic (c1, k60, u'user1'). +1548240208: Client mosqpub|10525-heretic disconnected. +1548240208: New connection from 172.21.0.1 on port 1883. +1548240208: New client connected from 172.21.0.1 as mosqpub|10526-heretic (c1, k60, u'user1'). +1548240208: Client mosqpub|10526-heretic disconnected. +1548240209: New connection from 172.21.0.1 on port 1883. +1548240209: New client connected from 172.21.0.1 as mosqpub|10527-heretic (c1, k60, u'user1'). +1548240209: Client mosqpub|10527-heretic disconnected. +1548240209: New connection from 172.21.0.1 on port 1883. +1548240209: New client connected from 172.21.0.1 as mosqpub|10528-heretic (c1, k60, u'user1'). +1548240209: Client mosqpub|10528-heretic disconnected. +1548240210: New connection from 172.21.0.1 on port 1883. +1548240210: New client connected from 172.21.0.1 as mosqpub|10529-heretic (c1, k60, u'user1'). +1548240210: Client mosqpub|10529-heretic disconnected. +1548240210: New connection from 172.21.0.1 on port 1883. +1548240210: New client connected from 172.21.0.1 as mosqpub|10530-heretic (c1, k60, u'user1'). +1548240210: Client mosqpub|10530-heretic disconnected. +1548240211: New connection from 172.21.0.1 on port 1883. +1548240211: New client connected from 172.21.0.1 as mosqpub|10531-heretic (c1, k60, u'user1'). +1548240211: Client mosqpub|10531-heretic disconnected. +1548240211: New connection from 172.21.0.1 on port 1883. +1548240211: New client connected from 172.21.0.1 as mosqpub|10532-heretic (c1, k60, u'user1'). +1548240211: Client mosqpub|10532-heretic disconnected. +1548240212: New connection from 172.21.0.1 on port 1883. +1548240212: New client connected from 172.21.0.1 as mosqpub|10533-heretic (c1, k60, u'user1'). +1548240212: Client mosqpub|10533-heretic disconnected. +1548240212: New connection from 172.21.0.1 on port 1883. +1548240212: New client connected from 172.21.0.1 as mosqpub|10534-heretic (c1, k60, u'user1'). +1548240212: Client mosqpub|10534-heretic disconnected. +1548240213: New connection from 172.21.0.1 on port 1883. +1548240213: New client connected from 172.21.0.1 as mosqpub|10535-heretic (c1, k60, u'user1'). +1548240213: Client mosqpub|10535-heretic disconnected. +1548240213: New connection from 172.21.0.1 on port 1883. +1548240213: New client connected from 172.21.0.1 as mosqpub|10536-heretic (c1, k60, u'user1'). +1548240213: Client mosqpub|10536-heretic disconnected. +1548240214: New connection from 172.21.0.1 on port 1883. +1548240214: New client connected from 172.21.0.1 as mosqpub|10537-heretic (c1, k60, u'user1'). +1548240214: Client mosqpub|10537-heretic disconnected. +1548240214: New connection from 172.21.0.1 on port 1883. +1548240214: New client connected from 172.21.0.1 as mosqpub|10538-heretic (c1, k60, u'user1'). +1548240214: Client mosqpub|10538-heretic disconnected. +1548240215: New connection from 172.21.0.1 on port 1883. +1548240215: New client connected from 172.21.0.1 as mosqpub|10539-heretic (c1, k60, u'user1'). +1548240215: Client mosqpub|10539-heretic disconnected. +1548240215: New connection from 172.21.0.1 on port 1883. +1548240215: New client connected from 172.21.0.1 as mosqpub|10540-heretic (c1, k60, u'user1'). +1548240215: Client mosqpub|10540-heretic disconnected. +1548240216: New connection from 172.21.0.1 on port 1883. +1548240216: New client connected from 172.21.0.1 as mosqpub|10541-heretic (c1, k60, u'user1'). +1548240216: Client mosqpub|10541-heretic disconnected. +1548240216: New connection from 172.21.0.1 on port 1883. +1548240216: New client connected from 172.21.0.1 as mosqpub|10542-heretic (c1, k60, u'user1'). +1548240216: Client mosqpub|10542-heretic disconnected. +1548240217: New connection from 172.21.0.1 on port 1883. +1548240217: New client connected from 172.21.0.1 as mosqpub|10543-heretic (c1, k60, u'user1'). +1548240217: Client mosqpub|10543-heretic disconnected. +1548240217: New connection from 172.21.0.1 on port 1883. +1548240217: New client connected from 172.21.0.1 as mosqpub|10544-heretic (c1, k60, u'user1'). +1548240217: Client mosqpub|10544-heretic disconnected. +1548240218: New connection from 172.21.0.1 on port 1883. +1548240218: New client connected from 172.21.0.1 as mosqpub|10545-heretic (c1, k60, u'user1'). +1548240218: Client mosqpub|10545-heretic disconnected. +1548240218: New connection from 172.21.0.1 on port 1883. +1548240218: New client connected from 172.21.0.1 as mosqpub|10546-heretic (c1, k60, u'user1'). +1548240218: Client mosqpub|10546-heretic disconnected. +1548240219: New connection from 172.21.0.1 on port 1883. +1548240219: New client connected from 172.21.0.1 as mosqpub|10547-heretic (c1, k60, u'user1'). +1548240219: Client mosqpub|10547-heretic disconnected. +1548240219: New connection from 172.21.0.1 on port 1883. +1548240219: New client connected from 172.21.0.1 as mosqpub|10548-heretic (c1, k60, u'user1'). +1548240219: Client mosqpub|10548-heretic disconnected. +1548240220: New connection from 172.21.0.1 on port 1883. +1548240220: New client connected from 172.21.0.1 as mosqpub|10549-heretic (c1, k60, u'user1'). +1548240220: Client mosqpub|10549-heretic disconnected. +1548240220: New connection from 172.21.0.1 on port 1883. +1548240220: New client connected from 172.21.0.1 as mosqpub|10550-heretic (c1, k60, u'user1'). +1548240220: Client mosqpub|10550-heretic disconnected. +1548240221: New connection from 172.21.0.1 on port 1883. +1548240221: New client connected from 172.21.0.1 as mosqpub|10551-heretic (c1, k60, u'user1'). +1548240221: Client mosqpub|10551-heretic disconnected. +1548240221: New connection from 172.21.0.1 on port 1883. +1548240221: New client connected from 172.21.0.1 as mosqpub|10552-heretic (c1, k60, u'user1'). +1548240221: Client mosqpub|10552-heretic disconnected. +1548240222: New connection from 172.21.0.1 on port 1883. +1548240222: New client connected from 172.21.0.1 as mosqpub|10553-heretic (c1, k60, u'user1'). +1548240222: Client mosqpub|10553-heretic disconnected. +1548240222: New connection from 172.21.0.1 on port 1883. +1548240222: New client connected from 172.21.0.1 as mosqpub|10554-heretic (c1, k60, u'user1'). +1548240222: Client mosqpub|10554-heretic disconnected. +1548240223: New connection from 172.21.0.1 on port 1883. +1548240223: New client connected from 172.21.0.1 as mosqpub|10555-heretic (c1, k60, u'user1'). +1548240223: Client mosqpub|10555-heretic disconnected. +1548240223: New connection from 172.21.0.1 on port 1883. +1548240223: New client connected from 172.21.0.1 as mosqpub|10556-heretic (c1, k60, u'user1'). +1548240223: Client mosqpub|10556-heretic disconnected. +1548240224: New connection from 172.21.0.1 on port 1883. +1548240224: New client connected from 172.21.0.1 as mosqpub|10557-heretic (c1, k60, u'user1'). +1548240224: Client mosqpub|10557-heretic disconnected. +1548240224: New connection from 172.21.0.1 on port 1883. +1548240224: New client connected from 172.21.0.1 as mosqpub|10558-heretic (c1, k60, u'user1'). +1548240224: Client mosqpub|10558-heretic disconnected. +1548240225: New connection from 172.21.0.1 on port 1883. +1548240225: New client connected from 172.21.0.1 as mosqpub|10559-heretic (c1, k60, u'user1'). +1548240225: Client mosqpub|10559-heretic disconnected. +1548240225: New connection from 172.21.0.1 on port 1883. +1548240225: New client connected from 172.21.0.1 as mosqpub|10560-heretic (c1, k60, u'user1'). +1548240225: Client mosqpub|10560-heretic disconnected. +1548240226: New connection from 172.21.0.1 on port 1883. +1548240226: New client connected from 172.21.0.1 as mosqpub|10561-heretic (c1, k60, u'user1'). +1548240226: Client mosqpub|10561-heretic disconnected. +1548240226: New connection from 172.21.0.1 on port 1883. +1548240226: New client connected from 172.21.0.1 as mosqpub|10562-heretic (c1, k60, u'user1'). +1548240226: Client mosqpub|10562-heretic disconnected. +1548240227: New connection from 172.21.0.1 on port 1883. +1548240227: New client connected from 172.21.0.1 as mosqpub|10563-heretic (c1, k60, u'user1'). +1548240227: Client mosqpub|10563-heretic disconnected. +1548240227: New connection from 172.21.0.1 on port 1883. +1548240227: New client connected from 172.21.0.1 as mosqpub|10564-heretic (c1, k60, u'user1'). +1548240227: Client mosqpub|10564-heretic disconnected. +1548240228: New connection from 172.21.0.1 on port 1883. +1548240228: New client connected from 172.21.0.1 as mosqpub|10565-heretic (c1, k60, u'user1'). +1548240228: Client mosqpub|10565-heretic disconnected. +1548240229: New connection from 172.21.0.1 on port 1883. +1548240229: New client connected from 172.21.0.1 as mosqpub|10566-heretic (c1, k60, u'user1'). +1548240229: Client mosqpub|10566-heretic disconnected. +1548240229: New connection from 172.21.0.1 on port 1883. +1548240229: New client connected from 172.21.0.1 as mosqpub|10567-heretic (c1, k60, u'user1'). +1548240229: Client mosqpub|10567-heretic disconnected. +1548240230: New connection from 172.21.0.1 on port 1883. +1548240230: New client connected from 172.21.0.1 as mosqpub|10568-heretic (c1, k60, u'user1'). +1548240230: Client mosqpub|10568-heretic disconnected. +1548240230: New connection from 172.21.0.1 on port 1883. +1548240230: New client connected from 172.21.0.1 as mosqpub|10569-heretic (c1, k60, u'user1'). +1548240230: Client mosqpub|10569-heretic disconnected. +1548240231: New connection from 172.21.0.1 on port 1883. +1548240231: New client connected from 172.21.0.1 as mosqpub|10570-heretic (c1, k60, u'user1'). +1548240231: Client mosqpub|10570-heretic disconnected. +1548240231: New connection from 172.21.0.1 on port 1883. +1548240231: New client connected from 172.21.0.1 as mosqpub|10571-heretic (c1, k60, u'user1'). +1548240231: Client mosqpub|10571-heretic disconnected. +1548240232: New connection from 172.21.0.1 on port 1883. +1548240232: New client connected from 172.21.0.1 as mosqpub|10572-heretic (c1, k60, u'user1'). +1548240232: Client mosqpub|10572-heretic disconnected. +1548240232: New connection from 172.21.0.1 on port 1883. +1548240232: New client connected from 172.21.0.1 as mosqpub|10573-heretic (c1, k60, u'user1'). +1548240232: Client mosqpub|10573-heretic disconnected. +1548240233: New connection from 172.21.0.1 on port 1883. +1548240233: New client connected from 172.21.0.1 as mosqpub|10574-heretic (c1, k60, u'user1'). +1548240233: Client mosqpub|10574-heretic disconnected. +1548240233: New connection from 172.21.0.1 on port 1883. +1548240233: New client connected from 172.21.0.1 as mosqpub|10575-heretic (c1, k60, u'user1'). +1548240233: Client mosqpub|10575-heretic disconnected. +1548240234: New connection from 172.21.0.1 on port 1883. +1548240234: New client connected from 172.21.0.1 as mosqpub|10576-heretic (c1, k60, u'user1'). +1548240234: Client mosqpub|10576-heretic disconnected. +1548240234: New connection from 172.21.0.1 on port 1883. +1548240234: New client connected from 172.21.0.1 as mosqpub|10577-heretic (c1, k60, u'user1'). +1548240234: Client mosqpub|10577-heretic disconnected. +1548240235: New connection from 172.21.0.1 on port 1883. +1548240235: New client connected from 172.21.0.1 as mosqpub|10578-heretic (c1, k60, u'user1'). +1548240235: Client mosqpub|10578-heretic disconnected. +1548240235: New connection from 172.21.0.1 on port 1883. +1548240235: New client connected from 172.21.0.1 as mosqpub|10579-heretic (c1, k60, u'user1'). +1548240235: Client mosqpub|10579-heretic disconnected. +1548240236: New connection from 172.21.0.1 on port 1883. +1548240236: New client connected from 172.21.0.1 as mosqpub|10580-heretic (c1, k60, u'user1'). +1548240236: Client mosqpub|10580-heretic disconnected. +1548240236: New connection from 172.21.0.1 on port 1883. +1548240236: New client connected from 172.21.0.1 as mosqpub|10581-heretic (c1, k60, u'user1'). +1548240236: Client mosqpub|10581-heretic disconnected. +1548240237: New connection from 172.21.0.1 on port 1883. +1548240237: New client connected from 172.21.0.1 as mosqpub|10582-heretic (c1, k60, u'user1'). +1548240237: Client mosqpub|10582-heretic disconnected. +1548240237: New connection from 172.21.0.1 on port 1883. +1548240237: New client connected from 172.21.0.1 as mosqpub|10583-heretic (c1, k60, u'user1'). +1548240237: Client mosqpub|10583-heretic disconnected. +1548240238: New connection from 172.21.0.1 on port 1883. +1548240238: New client connected from 172.21.0.1 as mosqpub|10584-heretic (c1, k60, u'user1'). +1548240238: Client mosqpub|10584-heretic disconnected. +1548240238: New connection from 172.21.0.1 on port 1883. +1548240238: New client connected from 172.21.0.1 as mosqpub|10585-heretic (c1, k60, u'user1'). +1548240238: Client mosqpub|10585-heretic disconnected. +1548240239: New connection from 172.21.0.1 on port 1883. +1548240239: New client connected from 172.21.0.1 as mosqpub|10586-heretic (c1, k60, u'user1'). +1548240239: Client mosqpub|10586-heretic disconnected. +1548240239: New connection from 172.21.0.1 on port 1883. +1548240239: New client connected from 172.21.0.1 as mosqpub|10589-heretic (c1, k60, u'user1'). +1548240239: Client mosqpub|10589-heretic disconnected. +1548240240: New connection from 172.21.0.1 on port 1883. +1548240240: New client connected from 172.21.0.1 as mosqpub|10590-heretic (c1, k60, u'user1'). +1548240240: Client mosqpub|10590-heretic disconnected. +1548240240: New connection from 172.21.0.1 on port 1883. +1548240240: New client connected from 172.21.0.1 as mosqpub|10591-heretic (c1, k60, u'user1'). +1548240240: Client mosqpub|10591-heretic disconnected. +1548240241: New connection from 172.21.0.1 on port 1883. +1548240241: New client connected from 172.21.0.1 as mosqpub|10592-heretic (c1, k60, u'user1'). +1548240241: Client mosqpub|10592-heretic disconnected. +1548240241: New connection from 172.21.0.1 on port 1883. +1548240241: New client connected from 172.21.0.1 as mosqpub|10593-heretic (c1, k60, u'user1'). +1548240241: Client mosqpub|10593-heretic disconnected. +1548240242: New connection from 172.21.0.1 on port 1883. +1548240242: New client connected from 172.21.0.1 as mosqpub|10594-heretic (c1, k60, u'user1'). +1548240242: Client mosqpub|10594-heretic disconnected. +1548240242: New connection from 172.21.0.1 on port 1883. +1548240242: New client connected from 172.21.0.1 as mosqpub|10598-heretic (c1, k60, u'user1'). +1548240242: Client mosqpub|10598-heretic disconnected. +1548240243: New connection from 172.21.0.1 on port 1883. +1548240243: New client connected from 172.21.0.1 as mosqpub|10599-heretic (c1, k60, u'user1'). +1548240243: Client mosqpub|10599-heretic disconnected. +1548240243: New connection from 172.21.0.1 on port 1883. +1548240243: New client connected from 172.21.0.1 as mosqpub|10600-heretic (c1, k60, u'user1'). +1548240243: Client mosqpub|10600-heretic disconnected. +1548240244: New connection from 172.21.0.1 on port 1883. +1548240244: New client connected from 172.21.0.1 as mosqpub|10601-heretic (c1, k60, u'user1'). +1548240244: Client mosqpub|10601-heretic disconnected. +1548240244: New connection from 172.21.0.1 on port 1883. +1548240244: New client connected from 172.21.0.1 as mosqpub|10602-heretic (c1, k60, u'user1'). +1548240244: Client mosqpub|10602-heretic disconnected. +1548240245: New connection from 172.21.0.1 on port 1883. +1548240245: New client connected from 172.21.0.1 as mosqpub|10603-heretic (c1, k60, u'user1'). +1548240245: Client mosqpub|10603-heretic disconnected. +1548240245: New connection from 172.21.0.1 on port 1883. +1548240245: New client connected from 172.21.0.1 as mosqpub|10604-heretic (c1, k60, u'user1'). +1548240245: Client mosqpub|10604-heretic disconnected. +1548240246: New connection from 172.21.0.1 on port 1883. +1548240246: New client connected from 172.21.0.1 as mosqpub|10605-heretic (c1, k60, u'user1'). +1548240246: Client mosqpub|10605-heretic disconnected. +1548240246: New connection from 172.21.0.1 on port 1883. +1548240246: New client connected from 172.21.0.1 as mosqpub|10606-heretic (c1, k60, u'user1'). +1548240246: Client mosqpub|10606-heretic disconnected. +1548240247: New connection from 172.21.0.1 on port 1883. +1548240247: New client connected from 172.21.0.1 as mosqpub|10607-heretic (c1, k60, u'user1'). +1548240247: Client mosqpub|10607-heretic disconnected. +1548240247: New connection from 172.21.0.1 on port 1883. +1548240247: New client connected from 172.21.0.1 as mosqpub|10608-heretic (c1, k60, u'user1'). +1548240247: Client mosqpub|10608-heretic disconnected. +1548240248: New connection from 172.21.0.1 on port 1883. +1548240248: New client connected from 172.21.0.1 as mosqpub|10609-heretic (c1, k60, u'user1'). +1548240248: Client mosqpub|10609-heretic disconnected. +1548240248: New connection from 172.21.0.1 on port 1883. +1548240248: New client connected from 172.21.0.1 as mosqpub|10610-heretic (c1, k60, u'user1'). +1548240248: Client mosqpub|10610-heretic disconnected. +1548240249: New connection from 172.21.0.1 on port 1883. +1548240249: New client connected from 172.21.0.1 as mosqpub|10611-heretic (c1, k60, u'user1'). +1548240249: Client mosqpub|10611-heretic disconnected. +1548240249: New connection from 172.21.0.1 on port 1883. +1548240249: New client connected from 172.21.0.1 as mosqpub|10613-heretic (c1, k60, u'user1'). +1548240249: Client mosqpub|10613-heretic disconnected. +1548240250: New connection from 172.21.0.1 on port 1883. +1548240250: New client connected from 172.21.0.1 as mosqpub|10614-heretic (c1, k60, u'user1'). +1548240250: Client mosqpub|10614-heretic disconnected. +1548240250: New connection from 172.21.0.1 on port 1883. +1548240250: New client connected from 172.21.0.1 as mosqpub|10615-heretic (c1, k60, u'user1'). +1548240250: Client mosqpub|10615-heretic disconnected. +1548240251: New connection from 172.21.0.1 on port 1883. +1548240251: New client connected from 172.21.0.1 as mosqpub|10616-heretic (c1, k60, u'user1'). +1548240251: Client mosqpub|10616-heretic disconnected. +1548240251: New connection from 172.21.0.1 on port 1883. +1548240251: New client connected from 172.21.0.1 as mosqpub|10617-heretic (c1, k60, u'user1'). +1548240251: Client mosqpub|10617-heretic disconnected. +1548240252: New connection from 172.21.0.1 on port 1883. +1548240252: New client connected from 172.21.0.1 as mosqpub|10618-heretic (c1, k60, u'user1'). +1548240252: Client mosqpub|10618-heretic disconnected. +1548240252: New connection from 172.21.0.1 on port 1883. +1548240252: New client connected from 172.21.0.1 as mosqpub|10619-heretic (c1, k60, u'user1'). +1548240252: Client mosqpub|10619-heretic disconnected. +1548240253: New connection from 172.21.0.1 on port 1883. +1548240253: New client connected from 172.21.0.1 as mosqpub|10620-heretic (c1, k60, u'user1'). +1548240253: Client mosqpub|10620-heretic disconnected. +1548240253: New connection from 172.21.0.1 on port 1883. +1548240253: New client connected from 172.21.0.1 as mosqpub|10621-heretic (c1, k60, u'user1'). +1548240253: Client mosqpub|10621-heretic disconnected. +1548240254: New connection from 172.21.0.1 on port 1883. +1548240254: New client connected from 172.21.0.1 as mosqpub|10622-heretic (c1, k60, u'user1'). +1548240254: Client mosqpub|10622-heretic disconnected. +1548240254: New connection from 172.21.0.1 on port 1883. +1548240254: New client connected from 172.21.0.1 as mosqpub|10623-heretic (c1, k60, u'user1'). +1548240254: Client mosqpub|10623-heretic disconnected. +1548240255: New connection from 172.21.0.1 on port 1883. +1548240255: New client connected from 172.21.0.1 as mosqpub|10624-heretic (c1, k60, u'user1'). +1548240255: Client mosqpub|10624-heretic disconnected. +1548240255: New connection from 172.21.0.1 on port 1883. +1548240255: New client connected from 172.21.0.1 as mosqpub|10625-heretic (c1, k60, u'user1'). +1548240255: Client mosqpub|10625-heretic disconnected. +1548240256: New connection from 172.21.0.1 on port 1883. +1548240256: New client connected from 172.21.0.1 as mosqpub|10626-heretic (c1, k60, u'user1'). +1548240256: Client mosqpub|10626-heretic disconnected. +1548240256: New connection from 172.21.0.1 on port 1883. +1548240256: New client connected from 172.21.0.1 as mosqpub|10627-heretic (c1, k60, u'user1'). +1548240256: Client mosqpub|10627-heretic disconnected. +1548240257: New connection from 172.21.0.1 on port 1883. +1548240257: New client connected from 172.21.0.1 as mosqpub|10628-heretic (c1, k60, u'user1'). +1548240257: Client mosqpub|10628-heretic disconnected. +1548240257: New connection from 172.21.0.1 on port 1883. +1548240257: New client connected from 172.21.0.1 as mosqpub|10629-heretic (c1, k60, u'user1'). +1548240257: Client mosqpub|10629-heretic disconnected. +1548240258: New connection from 172.21.0.1 on port 1883. +1548240258: New client connected from 172.21.0.1 as mosqpub|10630-heretic (c1, k60, u'user1'). +1548240258: Client mosqpub|10630-heretic disconnected. +1548240258: New connection from 172.21.0.1 on port 1883. +1548240258: New client connected from 172.21.0.1 as mosqpub|10631-heretic (c1, k60, u'user1'). +1548240258: Client mosqpub|10631-heretic disconnected. +1548240259: New connection from 172.21.0.1 on port 1883. +1548240259: New client connected from 172.21.0.1 as mosqpub|10632-heretic (c1, k60, u'user1'). +1548240259: Client mosqpub|10632-heretic disconnected. +1548240259: New connection from 172.21.0.1 on port 1883. +1548240259: New client connected from 172.21.0.1 as mosqpub|10633-heretic (c1, k60, u'user1'). +1548240259: Client mosqpub|10633-heretic disconnected. +1548240260: New connection from 172.21.0.1 on port 1883. +1548240260: New client connected from 172.21.0.1 as mosqpub|10634-heretic (c1, k60, u'user1'). +1548240260: Client mosqpub|10634-heretic disconnected. +1548240260: New connection from 172.21.0.1 on port 1883. +1548240260: New client connected from 172.21.0.1 as mosqpub|10635-heretic (c1, k60, u'user1'). +1548240260: Client mosqpub|10635-heretic disconnected. +1548240261: New connection from 172.21.0.1 on port 1883. +1548240261: New client connected from 172.21.0.1 as mosqpub|10636-heretic (c1, k60, u'user1'). +1548240261: Client mosqpub|10636-heretic disconnected. +1548240261: New connection from 172.21.0.1 on port 1883. +1548240261: New client connected from 172.21.0.1 as mosqpub|10637-heretic (c1, k60, u'user1'). +1548240261: Client mosqpub|10637-heretic disconnected. +1548240262: New connection from 172.21.0.1 on port 1883. +1548240262: New client connected from 172.21.0.1 as mosqpub|10638-heretic (c1, k60, u'user1'). +1548240262: Client mosqpub|10638-heretic disconnected. +1548240262: New connection from 172.21.0.1 on port 1883. +1548240262: New client connected from 172.21.0.1 as mosqpub|10639-heretic (c1, k60, u'user1'). +1548240262: Client mosqpub|10639-heretic disconnected. +1548240263: New connection from 172.21.0.1 on port 1883. +1548240263: New client connected from 172.21.0.1 as mosqpub|10640-heretic (c1, k60, u'user1'). +1548240263: Client mosqpub|10640-heretic disconnected. +1548240263: New connection from 172.21.0.1 on port 1883. +1548240263: New client connected from 172.21.0.1 as mosqpub|10641-heretic (c1, k60, u'user1'). +1548240263: Client mosqpub|10641-heretic disconnected. +1548240264: New connection from 172.21.0.1 on port 1883. +1548240264: New client connected from 172.21.0.1 as mosqpub|10642-heretic (c1, k60, u'user1'). +1548240264: Client mosqpub|10642-heretic disconnected. +1548240264: New connection from 172.21.0.1 on port 1883. +1548240264: New client connected from 172.21.0.1 as mosqpub|10643-heretic (c1, k60, u'user1'). +1548240264: Client mosqpub|10643-heretic disconnected. +1548240265: New connection from 172.21.0.1 on port 1883. +1548240265: New client connected from 172.21.0.1 as mosqpub|10644-heretic (c1, k60, u'user1'). +1548240265: Client mosqpub|10644-heretic disconnected. +1548240265: New connection from 172.21.0.1 on port 1883. +1548240265: New client connected from 172.21.0.1 as mosqpub|10645-heretic (c1, k60, u'user1'). +1548240265: Client mosqpub|10645-heretic disconnected. +1548240266: New connection from 172.21.0.1 on port 1883. +1548240266: New client connected from 172.21.0.1 as mosqpub|10646-heretic (c1, k60, u'user1'). +1548240266: Client mosqpub|10646-heretic disconnected. +1548240266: New connection from 172.21.0.1 on port 1883. +1548240266: New client connected from 172.21.0.1 as mosqpub|10647-heretic (c1, k60, u'user1'). +1548240266: Client mosqpub|10647-heretic disconnected. +1548240267: New connection from 172.21.0.1 on port 1883. +1548240267: New client connected from 172.21.0.1 as mosqpub|10648-heretic (c1, k60, u'user1'). +1548240267: Client mosqpub|10648-heretic disconnected. +1548240268: New connection from 172.21.0.1 on port 1883. +1548240268: New client connected from 172.21.0.1 as mosqpub|10650-heretic (c1, k60, u'user1'). +1548240268: Client mosqpub|10650-heretic disconnected. +1548240268: New connection from 172.21.0.1 on port 1883. +1548240268: New client connected from 172.21.0.1 as mosqpub|10651-heretic (c1, k60, u'user1'). +1548240268: Client mosqpub|10651-heretic disconnected. +1548240269: New connection from 172.21.0.1 on port 1883. +1548240269: New client connected from 172.21.0.1 as mosqpub|10652-heretic (c1, k60, u'user1'). +1548240269: Client mosqpub|10652-heretic disconnected. +1548240269: New connection from 172.21.0.1 on port 1883. +1548240269: New client connected from 172.21.0.1 as mosqpub|10653-heretic (c1, k60, u'user1'). +1548240269: Client mosqpub|10653-heretic disconnected. +1548240270: New connection from 172.21.0.1 on port 1883. +1548240270: New client connected from 172.21.0.1 as mosqpub|10654-heretic (c1, k60, u'user1'). +1548240270: Client mosqpub|10654-heretic disconnected. +1548240270: New connection from 172.21.0.1 on port 1883. +1548240270: New client connected from 172.21.0.1 as mosqpub|10655-heretic (c1, k60, u'user1'). +1548240270: Client mosqpub|10655-heretic disconnected. +1548240271: New connection from 172.21.0.1 on port 1883. +1548240271: New client connected from 172.21.0.1 as mosqpub|10656-heretic (c1, k60, u'user1'). +1548240271: Client mosqpub|10656-heretic disconnected. +1548240271: New connection from 172.21.0.1 on port 1883. +1548240271: New client connected from 172.21.0.1 as mosqpub|10657-heretic (c1, k60, u'user1'). +1548240271: Client mosqpub|10657-heretic disconnected. +1548240272: New connection from 172.21.0.1 on port 1883. +1548240272: New client connected from 172.21.0.1 as mosqpub|10658-heretic (c1, k60, u'user1'). +1548240272: Client mosqpub|10658-heretic disconnected. +1548240272: New connection from 172.21.0.1 on port 1883. +1548240272: New client connected from 172.21.0.1 as mosqpub|10660-heretic (c1, k60, u'user1'). +1548240272: Client mosqpub|10660-heretic disconnected. +1548240273: New connection from 172.21.0.1 on port 1883. +1548240273: New client connected from 172.21.0.1 as mosqpub|10661-heretic (c1, k60, u'user1'). +1548240273: Client mosqpub|10661-heretic disconnected. +1548240273: New connection from 172.21.0.1 on port 1883. +1548240273: New client connected from 172.21.0.1 as mosqpub|10662-heretic (c1, k60, u'user1'). +1548240273: Client mosqpub|10662-heretic disconnected. +1548240274: New connection from 172.21.0.1 on port 1883. +1548240274: New client connected from 172.21.0.1 as mosqpub|10663-heretic (c1, k60, u'user1'). +1548240274: Client mosqpub|10663-heretic disconnected. +1548240274: New connection from 172.21.0.1 on port 1883. +1548240274: New client connected from 172.21.0.1 as mosqpub|10664-heretic (c1, k60, u'user1'). +1548240274: Client mosqpub|10664-heretic disconnected. +1548240275: New connection from 172.21.0.1 on port 1883. +1548240275: New client connected from 172.21.0.1 as mosqpub|10665-heretic (c1, k60, u'user1'). +1548240275: Client mosqpub|10665-heretic disconnected. +1548240275: New connection from 172.21.0.1 on port 1883. +1548240275: New client connected from 172.21.0.1 as mosqpub|10666-heretic (c1, k60, u'user1'). +1548240275: Client mosqpub|10666-heretic disconnected. +1548240276: New connection from 172.21.0.1 on port 1883. +1548240276: New client connected from 172.21.0.1 as mosqpub|10667-heretic (c1, k60, u'user1'). +1548240276: Client mosqpub|10667-heretic disconnected. +1548240276: New connection from 172.21.0.1 on port 1883. +1548240276: New client connected from 172.21.0.1 as mosqpub|10668-heretic (c1, k60, u'user1'). +1548240276: Client mosqpub|10668-heretic disconnected. +1548240277: New connection from 172.21.0.1 on port 1883. +1548240277: New client connected from 172.21.0.1 as mosqpub|10669-heretic (c1, k60, u'user1'). +1548240277: Client mosqpub|10669-heretic disconnected. +1548240277: New connection from 172.21.0.1 on port 1883. +1548240277: New client connected from 172.21.0.1 as mosqpub|10670-heretic (c1, k60, u'user1'). +1548240277: Client mosqpub|10670-heretic disconnected. +1548240278: New connection from 172.21.0.1 on port 1883. +1548240278: New client connected from 172.21.0.1 as mosqpub|10671-heretic (c1, k60, u'user1'). +1548240278: Client mosqpub|10671-heretic disconnected. +1548240278: New connection from 172.21.0.1 on port 1883. +1548240278: New client connected from 172.21.0.1 as mosqpub|10672-heretic (c1, k60, u'user1'). +1548240278: Client mosqpub|10672-heretic disconnected. +1548240279: New connection from 172.21.0.1 on port 1883. +1548240279: New client connected from 172.21.0.1 as mosqpub|10673-heretic (c1, k60, u'user1'). +1548240279: Client mosqpub|10673-heretic disconnected. +1548240279: New connection from 172.21.0.1 on port 1883. +1548240279: New client connected from 172.21.0.1 as mosqpub|10674-heretic (c1, k60, u'user1'). +1548240279: Client mosqpub|10674-heretic disconnected. +1548240280: New connection from 172.21.0.1 on port 1883. +1548240280: New client connected from 172.21.0.1 as mosqpub|10675-heretic (c1, k60, u'user1'). +1548240280: Client mosqpub|10675-heretic disconnected. +1548240280: New connection from 172.21.0.1 on port 1883. +1548240280: New client connected from 172.21.0.1 as mosqpub|10676-heretic (c1, k60, u'user1'). +1548240280: Client mosqpub|10676-heretic disconnected. +1548240281: New connection from 172.21.0.1 on port 1883. +1548240281: New client connected from 172.21.0.1 as mosqpub|10677-heretic (c1, k60, u'user1'). +1548240281: Client mosqpub|10677-heretic disconnected. +1548240281: New connection from 172.21.0.1 on port 1883. +1548240281: New client connected from 172.21.0.1 as mosqpub|10678-heretic (c1, k60, u'user1'). +1548240281: Client mosqpub|10678-heretic disconnected. +1548240282: New connection from 172.21.0.1 on port 1883. +1548240282: New client connected from 172.21.0.1 as mosqpub|10679-heretic (c1, k60, u'user1'). +1548240282: Client mosqpub|10679-heretic disconnected. +1548240282: New connection from 172.21.0.1 on port 1883. +1548240282: New client connected from 172.21.0.1 as mosqpub|10680-heretic (c1, k60, u'user1'). +1548240282: Client mosqpub|10680-heretic disconnected. +1548240283: New connection from 172.21.0.1 on port 1883. +1548240283: New client connected from 172.21.0.1 as mosqpub|10681-heretic (c1, k60, u'user1'). +1548240283: Client mosqpub|10681-heretic disconnected. +1548240283: New connection from 172.21.0.1 on port 1883. +1548240283: New client connected from 172.21.0.1 as mosqpub|10682-heretic (c1, k60, u'user1'). +1548240283: Client mosqpub|10682-heretic disconnected. +1548240284: New connection from 172.21.0.1 on port 1883. +1548240284: New client connected from 172.21.0.1 as mosqpub|10683-heretic (c1, k60, u'user1'). +1548240284: Client mosqpub|10683-heretic disconnected. +1548240284: New connection from 172.21.0.1 on port 1883. +1548240284: New client connected from 172.21.0.1 as mosqpub|10684-heretic (c1, k60, u'user1'). +1548240284: Client mosqpub|10684-heretic disconnected. +1548240285: New connection from 172.21.0.1 on port 1883. +1548240285: New client connected from 172.21.0.1 as mosqpub|10685-heretic (c1, k60, u'user1'). +1548240285: Client mosqpub|10685-heretic disconnected. +1548240285: New connection from 172.21.0.1 on port 1883. +1548240285: New client connected from 172.21.0.1 as mosqpub|10686-heretic (c1, k60, u'user1'). +1548240285: Client mosqpub|10686-heretic disconnected. +1548240286: New connection from 172.21.0.1 on port 1883. +1548240286: New client connected from 172.21.0.1 as mosqpub|10687-heretic (c1, k60, u'user1'). +1548240286: Client mosqpub|10687-heretic disconnected. +1548240286: New connection from 172.21.0.1 on port 1883. +1548240286: New client connected from 172.21.0.1 as mosqpub|10688-heretic (c1, k60, u'user1'). +1548240286: Client mosqpub|10688-heretic disconnected. +1548240287: New connection from 172.21.0.1 on port 1883. +1548240287: New client connected from 172.21.0.1 as mosqpub|10690-heretic (c1, k60, u'user1'). +1548240287: Client mosqpub|10690-heretic disconnected. +1548240287: New connection from 172.21.0.1 on port 1883. +1548240287: New client connected from 172.21.0.1 as mosqpub|10691-heretic (c1, k60, u'user1'). +1548240287: Client mosqpub|10691-heretic disconnected. +1548240288: New connection from 172.21.0.1 on port 1883. +1548240288: New client connected from 172.21.0.1 as mosqpub|10692-heretic (c1, k60, u'user1'). +1548240288: Client mosqpub|10692-heretic disconnected. +1548240288: New connection from 172.21.0.1 on port 1883. +1548240288: New client connected from 172.21.0.1 as mosqpub|10693-heretic (c1, k60, u'user1'). +1548240288: Client mosqpub|10693-heretic disconnected. +1548240289: New connection from 172.21.0.1 on port 1883. +1548240289: New client connected from 172.21.0.1 as mosqpub|10694-heretic (c1, k60, u'user1'). +1548240289: Client mosqpub|10694-heretic disconnected. +1548240289: New connection from 172.21.0.1 on port 1883. +1548240289: New client connected from 172.21.0.1 as mosqpub|10695-heretic (c1, k60, u'user1'). +1548240289: Client mosqpub|10695-heretic disconnected. +1548240290: New connection from 172.21.0.1 on port 1883. +1548240290: New client connected from 172.21.0.1 as mosqpub|10696-heretic (c1, k60, u'user1'). +1548240290: Client mosqpub|10696-heretic disconnected. +1548240290: New connection from 172.21.0.1 on port 1883. +1548240290: New client connected from 172.21.0.1 as mosqpub|10697-heretic (c1, k60, u'user1'). +1548240290: Client mosqpub|10697-heretic disconnected. +1548240291: New connection from 172.21.0.1 on port 1883. +1548240291: New client connected from 172.21.0.1 as mosqpub|10698-heretic (c1, k60, u'user1'). +1548240291: Client mosqpub|10698-heretic disconnected. +1548240291: New connection from 172.21.0.1 on port 1883. +1548240291: New client connected from 172.21.0.1 as mosqpub|10699-heretic (c1, k60, u'user1'). +1548240291: Client mosqpub|10699-heretic disconnected. +1548240292: New connection from 172.21.0.1 on port 1883. +1548240292: New client connected from 172.21.0.1 as mosqpub|10700-heretic (c1, k60, u'user1'). +1548240292: Client mosqpub|10700-heretic disconnected. +1548240292: New connection from 172.21.0.1 on port 1883. +1548240292: New client connected from 172.21.0.1 as mosqpub|10701-heretic (c1, k60, u'user1'). +1548240292: Client mosqpub|10701-heretic disconnected. +1548240293: New connection from 172.21.0.1 on port 1883. +1548240293: New client connected from 172.21.0.1 as mosqpub|10702-heretic (c1, k60, u'user1'). +1548240293: Client mosqpub|10702-heretic disconnected. +1548240293: New connection from 172.21.0.1 on port 1883. +1548240293: New client connected from 172.21.0.1 as mosqpub|10703-heretic (c1, k60, u'user1'). +1548240293: Client mosqpub|10703-heretic disconnected. +1548240294: New connection from 172.21.0.1 on port 1883. +1548240294: New client connected from 172.21.0.1 as mosqpub|10704-heretic (c1, k60, u'user1'). +1548240294: Client mosqpub|10704-heretic disconnected. +1548240294: New connection from 172.21.0.1 on port 1883. +1548240294: New client connected from 172.21.0.1 as mosqpub|10705-heretic (c1, k60, u'user1'). +1548240294: Client mosqpub|10705-heretic disconnected. +1548240295: New connection from 172.21.0.1 on port 1883. +1548240295: New client connected from 172.21.0.1 as mosqpub|10706-heretic (c1, k60, u'user1'). +1548240295: Client mosqpub|10706-heretic disconnected. +1548240295: New connection from 172.21.0.1 on port 1883. +1548240295: New client connected from 172.21.0.1 as mosqpub|10707-heretic (c1, k60, u'user1'). +1548240295: Client mosqpub|10707-heretic disconnected. +1548240296: New connection from 172.21.0.1 on port 1883. +1548240296: New client connected from 172.21.0.1 as mosqpub|10708-heretic (c1, k60, u'user1'). +1548240296: Client mosqpub|10708-heretic disconnected. +1548240296: New connection from 172.21.0.1 on port 1883. +1548240296: New client connected from 172.21.0.1 as mosqpub|10709-heretic (c1, k60, u'user1'). +1548240296: Client mosqpub|10709-heretic disconnected. +1548240297: New connection from 172.21.0.1 on port 1883. +1548240297: New client connected from 172.21.0.1 as mosqpub|10710-heretic (c1, k60, u'user1'). +1548240297: Client mosqpub|10710-heretic disconnected. +1548240297: New connection from 172.21.0.1 on port 1883. +1548240297: New client connected from 172.21.0.1 as mosqpub|10711-heretic (c1, k60, u'user1'). +1548240297: Client mosqpub|10711-heretic disconnected. +1548240298: New connection from 172.21.0.1 on port 1883. +1548240298: New client connected from 172.21.0.1 as mosqpub|10712-heretic (c1, k60, u'user1'). +1548240298: Client mosqpub|10712-heretic disconnected. +1548240298: New connection from 172.21.0.1 on port 1883. +1548240298: New client connected from 172.21.0.1 as mosqpub|10713-heretic (c1, k60, u'user1'). +1548240298: Client mosqpub|10713-heretic disconnected. +1548240299: New connection from 172.21.0.1 on port 1883. +1548240299: New client connected from 172.21.0.1 as mosqpub|10714-heretic (c1, k60, u'user1'). +1548240299: Client mosqpub|10714-heretic disconnected. +1548240299: New connection from 172.21.0.1 on port 1883. +1548240299: New client connected from 172.21.0.1 as mosqpub|10715-heretic (c1, k60, u'user1'). +1548240299: Client mosqpub|10715-heretic disconnected. +1548240300: New connection from 172.21.0.1 on port 1883. +1548240300: New client connected from 172.21.0.1 as mosqpub|10716-heretic (c1, k60, u'user1'). +1548240300: Client mosqpub|10716-heretic disconnected. +1548240300: New connection from 172.21.0.1 on port 1883. +1548240300: New client connected from 172.21.0.1 as mosqpub|10717-heretic (c1, k60, u'user1'). +1548240300: Client mosqpub|10717-heretic disconnected. +1548240301: New connection from 172.21.0.1 on port 1883. +1548240301: New client connected from 172.21.0.1 as mosqpub|10718-heretic (c1, k60, u'user1'). +1548240301: Client mosqpub|10718-heretic disconnected. +1548240301: New connection from 172.21.0.1 on port 1883. +1548240301: New client connected from 172.21.0.1 as mosqpub|10719-heretic (c1, k60, u'user1'). +1548240301: Client mosqpub|10719-heretic disconnected. +1548240302: New connection from 172.21.0.1 on port 1883. +1548240302: New client connected from 172.21.0.1 as mosqpub|10720-heretic (c1, k60, u'user1'). +1548240302: Client mosqpub|10720-heretic disconnected. +1548240302: New connection from 172.21.0.1 on port 1883. +1548240302: New client connected from 172.21.0.1 as mosqpub|10721-heretic (c1, k60, u'user1'). +1548240302: Client mosqpub|10721-heretic disconnected. +1548240303: New connection from 172.21.0.1 on port 1883. +1548240303: New client connected from 172.21.0.1 as mosqpub|10722-heretic (c1, k60, u'user1'). +1548240303: Client mosqpub|10722-heretic disconnected. +1548240303: New connection from 172.21.0.1 on port 1883. +1548240303: New client connected from 172.21.0.1 as mosqpub|10723-heretic (c1, k60, u'user1'). +1548240303: Client mosqpub|10723-heretic disconnected. +1548240304: New connection from 172.21.0.1 on port 1883. +1548240304: New client connected from 172.21.0.1 as mosqpub|10724-heretic (c1, k60, u'user1'). +1548240304: Client mosqpub|10724-heretic disconnected. +1548240304: New connection from 172.21.0.1 on port 1883. +1548240304: New client connected from 172.21.0.1 as mosqpub|10725-heretic (c1, k60, u'user1'). +1548240304: Client mosqpub|10725-heretic disconnected. +1548240305: New connection from 172.21.0.1 on port 1883. +1548240305: New client connected from 172.21.0.1 as mosqpub|10726-heretic (c1, k60, u'user1'). +1548240305: Client mosqpub|10726-heretic disconnected. +1548240305: New connection from 172.21.0.1 on port 1883. +1548240305: New client connected from 172.21.0.1 as mosqpub|10727-heretic (c1, k60, u'user1'). +1548240305: Client mosqpub|10727-heretic disconnected. +1548240306: New connection from 172.21.0.1 on port 1883. +1548240306: New client connected from 172.21.0.1 as mosqpub|10728-heretic (c1, k60, u'user1'). +1548240306: Client mosqpub|10728-heretic disconnected. +1548240307: New connection from 172.21.0.1 on port 1883. +1548240307: New client connected from 172.21.0.1 as mosqpub|10729-heretic (c1, k60, u'user1'). +1548240307: Client mosqpub|10729-heretic disconnected. +1548240307: New connection from 172.21.0.1 on port 1883. +1548240307: New client connected from 172.21.0.1 as mosqpub|10730-heretic (c1, k60, u'user1'). +1548240307: Client mosqpub|10730-heretic disconnected. +1548240308: New connection from 172.21.0.1 on port 1883. +1548240308: New client connected from 172.21.0.1 as mosqpub|10731-heretic (c1, k60, u'user1'). +1548240308: Client mosqpub|10731-heretic disconnected. +1548240308: New connection from 172.21.0.1 on port 1883. +1548240308: New client connected from 172.21.0.1 as mosqpub|10732-heretic (c1, k60, u'user1'). +1548240308: Client mosqpub|10732-heretic disconnected. +1548240309: New connection from 172.21.0.1 on port 1883. +1548240309: New client connected from 172.21.0.1 as mosqpub|10733-heretic (c1, k60, u'user1'). +1548240309: Client mosqpub|10733-heretic disconnected. +1548240309: New connection from 172.21.0.1 on port 1883. +1548240309: New client connected from 172.21.0.1 as mosqpub|10734-heretic (c1, k60, u'user1'). +1548240309: Client mosqpub|10734-heretic disconnected. +1548240310: New connection from 172.21.0.1 on port 1883. +1548240310: New client connected from 172.21.0.1 as mosqpub|10735-heretic (c1, k60, u'user1'). +1548240310: Client mosqpub|10735-heretic disconnected. +1548240310: New connection from 172.21.0.1 on port 1883. +1548240310: New client connected from 172.21.0.1 as mosqpub|10736-heretic (c1, k60, u'user1'). +1548240310: Client mosqpub|10736-heretic disconnected. +1548240311: New connection from 172.21.0.1 on port 1883. +1548240311: New client connected from 172.21.0.1 as mosqpub|10737-heretic (c1, k60, u'user1'). +1548240311: Client mosqpub|10737-heretic disconnected. +1548240311: New connection from 172.21.0.1 on port 1883. +1548240311: New client connected from 172.21.0.1 as mosqpub|10738-heretic (c1, k60, u'user1'). +1548240311: Client mosqpub|10738-heretic disconnected. +1548240312: New connection from 172.21.0.1 on port 1883. +1548240312: New client connected from 172.21.0.1 as mosqpub|10739-heretic (c1, k60, u'user1'). +1548240312: Client mosqpub|10739-heretic disconnected. +1548240312: New connection from 172.21.0.1 on port 1883. +1548240312: New client connected from 172.21.0.1 as mosqpub|10740-heretic (c1, k60, u'user1'). +1548240312: Client mosqpub|10740-heretic disconnected. +1548240313: New connection from 172.21.0.1 on port 1883. +1548240313: New client connected from 172.21.0.1 as mosqpub|10741-heretic (c1, k60, u'user1'). +1548240313: Client mosqpub|10741-heretic disconnected. +1548240313: New connection from 172.21.0.1 on port 1883. +1548240313: New client connected from 172.21.0.1 as mosqpub|10742-heretic (c1, k60, u'user1'). +1548240313: Client mosqpub|10742-heretic disconnected. +1548240314: New connection from 172.21.0.1 on port 1883. +1548240314: New client connected from 172.21.0.1 as mosqpub|10743-heretic (c1, k60, u'user1'). +1548240314: Client mosqpub|10743-heretic disconnected. +1548240314: New connection from 172.21.0.1 on port 1883. +1548240314: New client connected from 172.21.0.1 as mosqpub|10744-heretic (c1, k60, u'user1'). +1548240314: Client mosqpub|10744-heretic disconnected. +1548240315: New connection from 172.21.0.1 on port 1883. +1548240315: New client connected from 172.21.0.1 as mosqpub|10745-heretic (c1, k60, u'user1'). +1548240315: Client mosqpub|10745-heretic disconnected. +1548240315: New connection from 172.21.0.1 on port 1883. +1548240315: New client connected from 172.21.0.1 as mosqpub|10746-heretic (c1, k60, u'user1'). +1548240315: Client mosqpub|10746-heretic disconnected. +1548240316: New connection from 172.21.0.1 on port 1883. +1548240316: New client connected from 172.21.0.1 as mosqpub|10747-heretic (c1, k60, u'user1'). +1548240316: Client mosqpub|10747-heretic disconnected. +1548240316: New connection from 172.21.0.1 on port 1883. +1548240316: New client connected from 172.21.0.1 as mosqpub|10748-heretic (c1, k60, u'user1'). +1548240316: Client mosqpub|10748-heretic disconnected. +1548240317: New connection from 172.21.0.1 on port 1883. +1548240317: New client connected from 172.21.0.1 as mosqpub|10749-heretic (c1, k60, u'user1'). +1548240317: Client mosqpub|10749-heretic disconnected. +1548240317: New connection from 172.21.0.1 on port 1883. +1548240317: New client connected from 172.21.0.1 as mosqpub|10750-heretic (c1, k60, u'user1'). +1548240317: Client mosqpub|10750-heretic disconnected. +1548240318: New connection from 172.21.0.1 on port 1883. +1548240318: New client connected from 172.21.0.1 as mosqpub|10751-heretic (c1, k60, u'user1'). +1548240318: Client mosqpub|10751-heretic disconnected. +1548240318: New connection from 172.21.0.1 on port 1883. +1548240318: New client connected from 172.21.0.1 as mosqpub|10752-heretic (c1, k60, u'user1'). +1548240318: Client mosqpub|10752-heretic disconnected. +1548240319: New connection from 172.21.0.1 on port 1883. +1548240319: New client connected from 172.21.0.1 as mosqpub|10753-heretic (c1, k60, u'user1'). +1548240319: Client mosqpub|10753-heretic disconnected. +1548240319: New connection from 172.21.0.1 on port 1883. +1548240319: New client connected from 172.21.0.1 as mosqpub|10754-heretic (c1, k60, u'user1'). +1548240319: Client mosqpub|10754-heretic disconnected. +1548240320: New connection from 172.21.0.1 on port 1883. +1548240320: New client connected from 172.21.0.1 as mosqpub|10755-heretic (c1, k60, u'user1'). +1548240320: Client mosqpub|10755-heretic disconnected. +1548240320: New connection from 172.21.0.1 on port 1883. +1548240320: New client connected from 172.21.0.1 as mosqpub|10756-heretic (c1, k60, u'user1'). +1548240320: Client mosqpub|10756-heretic disconnected. +1548240321: New connection from 172.21.0.1 on port 1883. +1548240321: New client connected from 172.21.0.1 as mosqpub|10757-heretic (c1, k60, u'user1'). +1548240321: Client mosqpub|10757-heretic disconnected. +1548240321: New connection from 172.21.0.1 on port 1883. +1548240321: New client connected from 172.21.0.1 as mosqpub|10758-heretic (c1, k60, u'user1'). +1548240321: Client mosqpub|10758-heretic disconnected. +1548240322: New connection from 172.21.0.1 on port 1883. +1548240322: New client connected from 172.21.0.1 as mosqpub|10759-heretic (c1, k60, u'user1'). +1548240322: Client mosqpub|10759-heretic disconnected. +1548240322: New connection from 172.21.0.1 on port 1883. +1548240322: New client connected from 172.21.0.1 as mosqpub|10763-heretic (c1, k60, u'user1'). +1548240322: Client mosqpub|10763-heretic disconnected. +1548240323: New connection from 172.21.0.1 on port 1883. +1548240323: New client connected from 172.21.0.1 as mosqpub|10764-heretic (c1, k60, u'user1'). +1548240323: Client mosqpub|10764-heretic disconnected. +1548240323: New connection from 172.21.0.1 on port 1883. +1548240323: New client connected from 172.21.0.1 as mosqpub|10765-heretic (c1, k60, u'user1'). +1548240323: Client mosqpub|10765-heretic disconnected. +1548240324: New connection from 172.21.0.1 on port 1883. +1548240324: New client connected from 172.21.0.1 as mosqpub|10766-heretic (c1, k60, u'user1'). +1548240324: Client mosqpub|10766-heretic disconnected. +1548240324: New connection from 172.21.0.1 on port 1883. +1548240324: New client connected from 172.21.0.1 as mosqpub|10767-heretic (c1, k60, u'user1'). +1548240324: Client mosqpub|10767-heretic disconnected. +1548240325: New connection from 172.21.0.1 on port 1883. +1548240325: New client connected from 172.21.0.1 as mosqpub|10768-heretic (c1, k60, u'user1'). +1548240325: Client mosqpub|10768-heretic disconnected. +1548240325: New connection from 172.21.0.1 on port 1883. +1548240325: New client connected from 172.21.0.1 as mosqpub|10769-heretic (c1, k60, u'user1'). +1548240325: Client mosqpub|10769-heretic disconnected. +1548240326: New connection from 172.21.0.1 on port 1883. +1548240326: New client connected from 172.21.0.1 as mosqpub|10770-heretic (c1, k60, u'user1'). +1548240326: Client mosqpub|10770-heretic disconnected. +1548240326: New connection from 172.21.0.1 on port 1883. +1548240326: New client connected from 172.21.0.1 as mosqpub|10771-heretic (c1, k60, u'user1'). +1548240326: Client mosqpub|10771-heretic disconnected. +1548240327: New connection from 172.21.0.1 on port 1883. +1548240327: New client connected from 172.21.0.1 as mosqpub|10772-heretic (c1, k60, u'user1'). +1548240327: Client mosqpub|10772-heretic disconnected. +1548240327: New connection from 172.21.0.1 on port 1883. +1548240327: New client connected from 172.21.0.1 as mosqpub|10773-heretic (c1, k60, u'user1'). +1548240327: Client mosqpub|10773-heretic disconnected. +1548240328: New connection from 172.21.0.1 on port 1883. +1548240328: New client connected from 172.21.0.1 as mosqpub|10774-heretic (c1, k60, u'user1'). +1548240328: Client mosqpub|10774-heretic disconnected. +1548240328: New connection from 172.21.0.1 on port 1883. +1548240328: New client connected from 172.21.0.1 as mosqpub|10775-heretic (c1, k60, u'user1'). +1548240328: Client mosqpub|10775-heretic disconnected. +1548240329: New connection from 172.21.0.1 on port 1883. +1548240329: New client connected from 172.21.0.1 as mosqpub|10776-heretic (c1, k60, u'user1'). +1548240329: Client mosqpub|10776-heretic disconnected. +1548240329: New connection from 172.21.0.1 on port 1883. +1548240329: New client connected from 172.21.0.1 as mosqpub|10777-heretic (c1, k60, u'user1'). +1548240329: Client mosqpub|10777-heretic disconnected. +1548240330: New connection from 172.21.0.1 on port 1883. +1548240330: New client connected from 172.21.0.1 as mosqpub|10778-heretic (c1, k60, u'user1'). +1548240330: Client mosqpub|10778-heretic disconnected. +1548240330: New connection from 172.21.0.1 on port 1883. +1548240330: New client connected from 172.21.0.1 as mosqpub|10779-heretic (c1, k60, u'user1'). +1548240330: Client mosqpub|10779-heretic disconnected. +1548240331: New connection from 172.21.0.1 on port 1883. +1548240331: New client connected from 172.21.0.1 as mosqpub|10780-heretic (c1, k60, u'user1'). +1548240331: Client mosqpub|10780-heretic disconnected. +1548240331: New connection from 172.21.0.1 on port 1883. +1548240331: New client connected from 172.21.0.1 as mosqpub|10781-heretic (c1, k60, u'user1'). +1548240331: Client mosqpub|10781-heretic disconnected. +1548240332: New connection from 172.21.0.1 on port 1883. +1548240332: New client connected from 172.21.0.1 as mosqpub|10782-heretic (c1, k60, u'user1'). +1548240332: Client mosqpub|10782-heretic disconnected. +1548240332: New connection from 172.21.0.1 on port 1883. +1548240332: New client connected from 172.21.0.1 as mosqpub|10783-heretic (c1, k60, u'user1'). +1548240332: Client mosqpub|10783-heretic disconnected. +1548240333: New connection from 172.21.0.1 on port 1883. +1548240333: New client connected from 172.21.0.1 as mosqpub|10784-heretic (c1, k60, u'user1'). +1548240333: Client mosqpub|10784-heretic disconnected. +1548240333: New connection from 172.21.0.1 on port 1883. +1548240333: New client connected from 172.21.0.1 as mosqpub|10785-heretic (c1, k60, u'user1'). +1548240333: Client mosqpub|10785-heretic disconnected. +1548240334: New connection from 172.21.0.1 on port 1883. +1548240334: New client connected from 172.21.0.1 as mosqpub|10786-heretic (c1, k60, u'user1'). +1548240334: Client mosqpub|10786-heretic disconnected. +1548240334: New connection from 172.21.0.1 on port 1883. +1548240334: New client connected from 172.21.0.1 as mosqpub|10788-heretic (c1, k60, u'user1'). +1548240334: Client mosqpub|10788-heretic disconnected. +1548240335: New connection from 172.21.0.1 on port 1883. +1548240335: New client connected from 172.21.0.1 as mosqpub|10789-heretic (c1, k60, u'user1'). +1548240335: Client mosqpub|10789-heretic disconnected. +1548240335: New connection from 172.21.0.1 on port 1883. +1548240335: New client connected from 172.21.0.1 as mosqpub|10790-heretic (c1, k60, u'user1'). +1548240335: Client mosqpub|10790-heretic disconnected. +1548240336: New connection from 172.21.0.1 on port 1883. +1548240336: New client connected from 172.21.0.1 as mosqpub|10791-heretic (c1, k60, u'user1'). +1548240336: Client mosqpub|10791-heretic disconnected. +1548240336: New connection from 172.21.0.1 on port 1883. +1548240336: New client connected from 172.21.0.1 as mosqpub|10792-heretic (c1, k60, u'user1'). +1548240336: Client mosqpub|10792-heretic disconnected. +1548240337: New connection from 172.21.0.1 on port 1883. +1548240337: New client connected from 172.21.0.1 as mosqpub|10793-heretic (c1, k60, u'user1'). +1548240337: Client mosqpub|10793-heretic disconnected. +1548240337: New connection from 172.21.0.1 on port 1883. +1548240337: New client connected from 172.21.0.1 as mosqpub|10794-heretic (c1, k60, u'user1'). +1548240337: Client mosqpub|10794-heretic disconnected. +1548240338: New connection from 172.21.0.1 on port 1883. +1548240338: New client connected from 172.21.0.1 as mosqpub|10795-heretic (c1, k60, u'user1'). +1548240338: Client mosqpub|10795-heretic disconnected. +1548240338: New connection from 172.21.0.1 on port 1883. +1548240338: New client connected from 172.21.0.1 as mosqpub|10796-heretic (c1, k60, u'user1'). +1548240338: Client mosqpub|10796-heretic disconnected. +1548240339: New connection from 172.21.0.1 on port 1883. +1548240339: New client connected from 172.21.0.1 as mosqpub|10797-heretic (c1, k60, u'user1'). +1548240339: Client mosqpub|10797-heretic disconnected. +1548240339: New connection from 172.21.0.1 on port 1883. +1548240339: New client connected from 172.21.0.1 as mosqpub|10798-heretic (c1, k60, u'user1'). +1548240339: Client mosqpub|10798-heretic disconnected. +1548240340: New connection from 172.21.0.1 on port 1883. +1548240340: New client connected from 172.21.0.1 as mosqpub|10799-heretic (c1, k60, u'user1'). +1548240340: Client mosqpub|10799-heretic disconnected. +1548240340: New connection from 172.21.0.1 on port 1883. +1548240340: New client connected from 172.21.0.1 as mosqpub|10800-heretic (c1, k60, u'user1'). +1548240340: Client mosqpub|10800-heretic disconnected. +1548240341: New connection from 172.21.0.1 on port 1883. +1548240341: New client connected from 172.21.0.1 as mosqpub|10801-heretic (c1, k60, u'user1'). +1548240341: Client mosqpub|10801-heretic disconnected. +1548240341: New connection from 172.21.0.1 on port 1883. +1548240341: New client connected from 172.21.0.1 as mosqpub|10802-heretic (c1, k60, u'user1'). +1548240341: Client mosqpub|10802-heretic disconnected. +1548240342: New connection from 172.21.0.1 on port 1883. +1548240342: New client connected from 172.21.0.1 as mosqpub|10803-heretic (c1, k60, u'user1'). +1548240342: Client mosqpub|10803-heretic disconnected. +1548240342: New connection from 172.21.0.1 on port 1883. +1548240342: New client connected from 172.21.0.1 as mosqpub|10804-heretic (c1, k60, u'user1'). +1548240342: Client mosqpub|10804-heretic disconnected. +1548240343: New connection from 172.21.0.1 on port 1883. +1548240343: New client connected from 172.21.0.1 as mosqpub|10805-heretic (c1, k60, u'user1'). +1548240343: Client mosqpub|10805-heretic disconnected. +1548240343: New connection from 172.21.0.1 on port 1883. +1548240343: New client connected from 172.21.0.1 as mosqpub|10806-heretic (c1, k60, u'user1'). +1548240343: Client mosqpub|10806-heretic disconnected. +1548240344: New connection from 172.21.0.1 on port 1883. +1548240344: New client connected from 172.21.0.1 as mosqpub|10807-heretic (c1, k60, u'user1'). +1548240344: Client mosqpub|10807-heretic disconnected. +1548240345: New connection from 172.21.0.1 on port 1883. +1548240345: New client connected from 172.21.0.1 as mosqpub|10808-heretic (c1, k60, u'user1'). +1548240345: Client mosqpub|10808-heretic disconnected. +1548240345: New connection from 172.21.0.1 on port 1883. +1548240345: New client connected from 172.21.0.1 as mosqpub|10809-heretic (c1, k60, u'user1'). +1548240345: Client mosqpub|10809-heretic disconnected. +1548240346: New connection from 172.21.0.1 on port 1883. +1548240346: New client connected from 172.21.0.1 as mosqpub|10810-heretic (c1, k60, u'user1'). +1548240346: Client mosqpub|10810-heretic disconnected. +1548240346: New connection from 172.21.0.1 on port 1883. +1548240346: New client connected from 172.21.0.1 as mosqpub|10811-heretic (c1, k60, u'user1'). +1548240346: Client mosqpub|10811-heretic disconnected. +1548240347: New connection from 172.21.0.1 on port 1883. +1548240347: New client connected from 172.21.0.1 as mosqpub|10812-heretic (c1, k60, u'user1'). +1548240347: Client mosqpub|10812-heretic disconnected. +1548240347: New connection from 172.21.0.1 on port 1883. +1548240347: New client connected from 172.21.0.1 as mosqpub|10813-heretic (c1, k60, u'user1'). +1548240347: Client mosqpub|10813-heretic disconnected. +1548240348: New connection from 172.21.0.1 on port 1883. +1548240348: New client connected from 172.21.0.1 as mosqpub|10816-heretic (c1, k60, u'user1'). +1548240348: Client mosqpub|10816-heretic disconnected. +1548240348: New connection from 172.21.0.1 on port 1883. +1548240348: New client connected from 172.21.0.1 as mosqpub|10817-heretic (c1, k60, u'user1'). +1548240348: Client mosqpub|10817-heretic disconnected. +1548240349: New connection from 172.21.0.1 on port 1883. +1548240349: New client connected from 172.21.0.1 as mosqpub|10818-heretic (c1, k60, u'user1'). +1548240349: Client mosqpub|10818-heretic disconnected. +1548240349: New connection from 172.21.0.1 on port 1883. +1548240349: New client connected from 172.21.0.1 as mosqpub|10819-heretic (c1, k60, u'user1'). +1548240349: Client mosqpub|10819-heretic disconnected. +1548240350: New connection from 172.21.0.1 on port 1883. +1548240350: New client connected from 172.21.0.1 as mosqpub|10820-heretic (c1, k60, u'user1'). +1548240350: Client mosqpub|10820-heretic disconnected. +1548240350: New connection from 172.21.0.1 on port 1883. +1548240350: New client connected from 172.21.0.1 as mosqpub|10821-heretic (c1, k60, u'user1'). +1548240350: Client mosqpub|10821-heretic disconnected. +1548240351: New connection from 172.21.0.1 on port 1883. +1548240351: New client connected from 172.21.0.1 as mosqpub|10822-heretic (c1, k60, u'user1'). +1548240351: Client mosqpub|10822-heretic disconnected. +1548240351: New connection from 172.21.0.1 on port 1883. +1548240351: New client connected from 172.21.0.1 as mosqpub|10823-heretic (c1, k60, u'user1'). +1548240351: Client mosqpub|10823-heretic disconnected. +1548240352: New connection from 172.21.0.1 on port 1883. +1548240352: New client connected from 172.21.0.1 as mosqpub|10824-heretic (c1, k60, u'user1'). +1548240352: Client mosqpub|10824-heretic disconnected. +1548240352: New connection from 172.21.0.1 on port 1883. +1548240352: New client connected from 172.21.0.1 as mosqpub|10825-heretic (c1, k60, u'user1'). +1548240352: Client mosqpub|10825-heretic disconnected. +1548240353: New connection from 172.21.0.1 on port 1883. +1548240353: New client connected from 172.21.0.1 as mosqpub|10826-heretic (c1, k60, u'user1'). +1548240353: Client mosqpub|10826-heretic disconnected. +1548240353: New connection from 172.21.0.1 on port 1883. +1548240353: New client connected from 172.21.0.1 as mosqpub|10827-heretic (c1, k60, u'user1'). +1548240353: Client mosqpub|10827-heretic disconnected. +1548240354: New connection from 172.21.0.1 on port 1883. +1548240354: New client connected from 172.21.0.1 as mosqpub|10828-heretic (c1, k60, u'user1'). +1548240354: Client mosqpub|10828-heretic disconnected. +1548240354: New connection from 172.21.0.1 on port 1883. +1548240354: New client connected from 172.21.0.1 as mosqpub|10829-heretic (c1, k60, u'user1'). +1548240354: Client mosqpub|10829-heretic disconnected. +1548240355: New connection from 172.21.0.1 on port 1883. +1548240355: New client connected from 172.21.0.1 as mosqpub|10830-heretic (c1, k60, u'user1'). +1548240355: Client mosqpub|10830-heretic disconnected. +1548240355: New connection from 172.21.0.1 on port 1883. +1548240355: New client connected from 172.21.0.1 as mosqpub|10831-heretic (c1, k60, u'user1'). +1548240355: Client mosqpub|10831-heretic disconnected. +1548240356: New connection from 172.21.0.1 on port 1883. +1548240356: New client connected from 172.21.0.1 as mosqpub|10832-heretic (c1, k60, u'user1'). +1548240356: Client mosqpub|10832-heretic disconnected. +1548240356: New connection from 172.21.0.1 on port 1883. +1548240356: New client connected from 172.21.0.1 as mosqpub|10833-heretic (c1, k60, u'user1'). +1548240356: Client mosqpub|10833-heretic disconnected. +1548240357: New connection from 172.21.0.1 on port 1883. +1548240357: New client connected from 172.21.0.1 as mosqpub|10834-heretic (c1, k60, u'user1'). +1548240357: Client mosqpub|10834-heretic disconnected. +1548240357: New connection from 172.21.0.1 on port 1883. +1548240357: New client connected from 172.21.0.1 as mosqpub|10835-heretic (c1, k60, u'user1'). +1548240357: Client mosqpub|10835-heretic disconnected. +1548240358: New connection from 172.21.0.1 on port 1883. +1548240358: New client connected from 172.21.0.1 as mosqpub|10836-heretic (c1, k60, u'user1'). +1548240358: Client mosqpub|10836-heretic disconnected. +1548240358: New connection from 172.21.0.1 on port 1883. +1548240358: New client connected from 172.21.0.1 as mosqpub|10837-heretic (c1, k60, u'user1'). +1548240358: Client mosqpub|10837-heretic disconnected. +1548240359: New connection from 172.21.0.1 on port 1883. +1548240359: New client connected from 172.21.0.1 as mosqpub|10838-heretic (c1, k60, u'user1'). +1548240359: Client mosqpub|10838-heretic disconnected. +1548240359: New connection from 172.21.0.1 on port 1883. +1548240359: New client connected from 172.21.0.1 as mosqpub|10839-heretic (c1, k60, u'user1'). +1548240359: Client mosqpub|10839-heretic disconnected. +1548240360: New connection from 172.21.0.1 on port 1883. +1548240360: New client connected from 172.21.0.1 as mosqpub|10840-heretic (c1, k60, u'user1'). +1548240360: Client mosqpub|10840-heretic disconnected. +1548240360: New connection from 172.21.0.1 on port 1883. +1548240360: New client connected from 172.21.0.1 as mosqpub|10841-heretic (c1, k60, u'user1'). +1548240360: Client mosqpub|10841-heretic disconnected. +1548240361: New connection from 172.21.0.1 on port 1883. +1548240361: New client connected from 172.21.0.1 as mosqpub|10842-heretic (c1, k60, u'user1'). +1548240361: Client mosqpub|10842-heretic disconnected. +1548240361: New connection from 172.21.0.1 on port 1883. +1548240361: New client connected from 172.21.0.1 as mosqpub|10843-heretic (c1, k60, u'user1'). +1548240361: Client mosqpub|10843-heretic disconnected. +1548240362: New connection from 172.21.0.1 on port 1883. +1548240362: New client connected from 172.21.0.1 as mosqpub|10844-heretic (c1, k60, u'user1'). +1548240362: Client mosqpub|10844-heretic disconnected. +1548240362: New connection from 172.21.0.1 on port 1883. +1548240362: New client connected from 172.21.0.1 as mosqpub|10845-heretic (c1, k60, u'user1'). +1548240362: Client mosqpub|10845-heretic disconnected. +1548240363: New connection from 172.21.0.1 on port 1883. +1548240363: New client connected from 172.21.0.1 as mosqpub|10846-heretic (c1, k60, u'user1'). +1548240363: Client mosqpub|10846-heretic disconnected. +1548240363: New connection from 172.21.0.1 on port 1883. +1548240363: New client connected from 172.21.0.1 as mosqpub|10847-heretic (c1, k60, u'user1'). +1548240363: Client mosqpub|10847-heretic disconnected. +1548240364: New connection from 172.21.0.1 on port 1883. +1548240364: New client connected from 172.21.0.1 as mosqpub|10848-heretic (c1, k60, u'user1'). +1548240364: Client mosqpub|10848-heretic disconnected. +1548240364: New connection from 172.21.0.1 on port 1883. +1548240364: New client connected from 172.21.0.1 as mosqpub|10849-heretic (c1, k60, u'user1'). +1548240364: Client mosqpub|10849-heretic disconnected. +1548240365: New connection from 172.21.0.1 on port 1883. +1548240365: New client connected from 172.21.0.1 as mosqpub|10850-heretic (c1, k60, u'user1'). +1548240365: Client mosqpub|10850-heretic disconnected. +1548240365: New connection from 172.21.0.1 on port 1883. +1548240365: New client connected from 172.21.0.1 as mosqpub|10851-heretic (c1, k60, u'user1'). +1548240365: Client mosqpub|10851-heretic disconnected. +1548240366: New connection from 172.21.0.1 on port 1883. +1548240366: New client connected from 172.21.0.1 as mosqpub|10852-heretic (c1, k60, u'user1'). +1548240366: Client mosqpub|10852-heretic disconnected. +1548240366: New connection from 172.21.0.1 on port 1883. +1548240366: New client connected from 172.21.0.1 as mosqpub|10853-heretic (c1, k60, u'user1'). +1548240366: Client mosqpub|10853-heretic disconnected. +1548240367: New connection from 172.21.0.1 on port 1883. +1548240367: New client connected from 172.21.0.1 as mosqpub|10854-heretic (c1, k60, u'user1'). +1548240367: Client mosqpub|10854-heretic disconnected. +1548240367: New connection from 172.21.0.1 on port 1883. +1548240367: New client connected from 172.21.0.1 as mosqpub|10855-heretic (c1, k60, u'user1'). +1548240367: Client mosqpub|10855-heretic disconnected. +1548240368: New connection from 172.21.0.1 on port 1883. +1548240368: New client connected from 172.21.0.1 as mosqpub|10856-heretic (c1, k60, u'user1'). +1548240368: Client mosqpub|10856-heretic disconnected. +1548240368: New connection from 172.21.0.1 on port 1883. +1548240368: New client connected from 172.21.0.1 as mosqpub|10857-heretic (c1, k60, u'user1'). +1548240368: Client mosqpub|10857-heretic disconnected. +1548240369: New connection from 172.21.0.1 on port 1883. +1548240369: New client connected from 172.21.0.1 as mosqpub|10858-heretic (c1, k60, u'user1'). +1548240369: Client mosqpub|10858-heretic disconnected. +1548240369: New connection from 172.21.0.1 on port 1883. +1548240369: New client connected from 172.21.0.1 as mosqpub|10859-heretic (c1, k60, u'user1'). +1548240369: Client mosqpub|10859-heretic disconnected. +1548240370: New connection from 172.21.0.1 on port 1883. +1548240370: New client connected from 172.21.0.1 as mosqpub|10860-heretic (c1, k60, u'user1'). +1548240370: Client mosqpub|10860-heretic disconnected. +1548240370: New connection from 172.21.0.1 on port 1883. +1548240370: New client connected from 172.21.0.1 as mosqpub|10861-heretic (c1, k60, u'user1'). +1548240370: Client mosqpub|10861-heretic disconnected. +1548240371: New connection from 172.21.0.1 on port 1883. +1548240371: New client connected from 172.21.0.1 as mosqpub|10862-heretic (c1, k60, u'user1'). +1548240371: Client mosqpub|10862-heretic disconnected. +1548240371: New connection from 172.21.0.1 on port 1883. +1548240371: New client connected from 172.21.0.1 as mosqpub|10863-heretic (c1, k60, u'user1'). +1548240371: Client mosqpub|10863-heretic disconnected. +1548240372: New connection from 172.21.0.1 on port 1883. +1548240372: New client connected from 172.21.0.1 as mosqpub|10864-heretic (c1, k60, u'user1'). +1548240372: Client mosqpub|10864-heretic disconnected. +1548240372: New connection from 172.21.0.1 on port 1883. +1548240372: New client connected from 172.21.0.1 as mosqpub|10865-heretic (c1, k60, u'user1'). +1548240372: Client mosqpub|10865-heretic disconnected. +1548240373: New connection from 172.21.0.1 on port 1883. +1548240373: New client connected from 172.21.0.1 as mosqpub|10866-heretic (c1, k60, u'user1'). +1548240373: Client mosqpub|10866-heretic disconnected. +1548240373: New connection from 172.21.0.1 on port 1883. +1548240373: New client connected from 172.21.0.1 as mosqpub|10867-heretic (c1, k60, u'user1'). +1548240373: Client mosqpub|10867-heretic disconnected. +1548240374: New connection from 172.21.0.1 on port 1883. +1548240374: New client connected from 172.21.0.1 as mosqpub|10868-heretic (c1, k60, u'user1'). +1548240374: Client mosqpub|10868-heretic disconnected. +1548240374: New connection from 172.21.0.1 on port 1883. +1548240374: New client connected from 172.21.0.1 as mosqpub|10869-heretic (c1, k60, u'user1'). +1548240374: Client mosqpub|10869-heretic disconnected. +1548240375: New connection from 172.21.0.1 on port 1883. +1548240375: New client connected from 172.21.0.1 as mosqpub|10870-heretic (c1, k60, u'user1'). +1548240375: Client mosqpub|10870-heretic disconnected. +1548240375: New connection from 172.21.0.1 on port 1883. +1548240375: New client connected from 172.21.0.1 as mosqpub|10871-heretic (c1, k60, u'user1'). +1548240375: Client mosqpub|10871-heretic disconnected. +1548240376: New connection from 172.21.0.1 on port 1883. +1548240376: New client connected from 172.21.0.1 as mosqpub|10872-heretic (c1, k60, u'user1'). +1548240376: Client mosqpub|10872-heretic disconnected. +1548240376: New connection from 172.21.0.1 on port 1883. +1548240376: New client connected from 172.21.0.1 as mosqpub|10873-heretic (c1, k60, u'user1'). +1548240376: Client mosqpub|10873-heretic disconnected. +1548240377: New connection from 172.21.0.1 on port 1883. +1548240377: New client connected from 172.21.0.1 as mosqpub|10874-heretic (c1, k60, u'user1'). +1548240377: Client mosqpub|10874-heretic disconnected. +1548240377: New connection from 172.21.0.1 on port 1883. +1548240377: New client connected from 172.21.0.1 as mosqpub|10875-heretic (c1, k60, u'user1'). +1548240377: Client mosqpub|10875-heretic disconnected. +1548240378: mosquitto version 1.5.5 terminating