2387 lines
354 KiB
MySQL
Raw Normal View History

2025-03-14 04:22:14 +10:00
--
-- PostgreSQL database dump
--
-- Dumped from database version 17.3 (Debian 17.3-3.pgdg120+1)
-- Dumped by pg_dump version 17.3 (Debian 17.3-3.pgdg120+1)
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET transaction_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;
--
-- Name: useractions; Type: TYPE; Schema: public; Owner: postgres
--
CREATE TYPE public.useractions AS ENUM (
'FIRST_ENTRY',
'REGISTRATION',
'LOGIN',
'LOGOUT',
'CREATE_THEME',
'ENTRY_THEME',
'DELETE_THEME',
'WRITE_MESSAGE'
);
ALTER TYPE public.useractions OWNER TO postgres;
SET default_tablespace = '';
SET default_table_access_method = heap;
2025-03-14 04:22:14 +10:00
--
-- Name: log; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public.log (
id integer NOT NULL,
user_id integer,
2025-03-14 04:22:14 +10:00
datetime timestamp with time zone NOT NULL,
action public.useractions NOT NULL,
object_id integer,
2025-03-14 05:05:50 +10:00
success_response boolean NOT NULL
2025-03-14 04:22:14 +10:00
);
ALTER TABLE public.log OWNER TO postgres;
--
-- Name: log_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE public.log_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER SEQUENCE public.log_id_seq OWNER TO postgres;
--
-- Name: log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE public.log_id_seq OWNED BY public.log.id;
--
-- Name: log id; Type: DEFAULT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.log ALTER COLUMN id SET DEFAULT nextval('public.log_id_seq'::regclass);
2025-03-14 05:05:50 +10:00
2025-03-14 04:22:14 +10:00
--
-- Data for Name: log; Type: TABLE DATA; Schema: public; Owner: postgres
--
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (1966, NULL, '2019-12-31 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (1967, NULL, '2019-12-31 14:00:00+00', 'ENTRY_THEME', 32190, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (1968, NULL, '2020-01-01 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (1969, NULL, '2020-01-01 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (1970, 86953, '2020-01-01 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (1971, NULL, '2020-01-01 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (1972, 58341, '2020-01-01 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (1973, NULL, '2020-01-01 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (1974, 3307, '2020-01-01 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (1975, NULL, '2020-01-01 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (1976, 60456, '2020-01-01 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (1977, NULL, '2020-01-01 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (1978, 64568, '2020-01-01 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (1979, NULL, '2020-01-01 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (1980, 10344, '2020-01-01 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (1981, NULL, '2020-01-01 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (1982, 84697, '2020-01-01 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (1983, NULL, '2020-01-01 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (1984, 53955, '2020-01-01 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (1985, NULL, '2020-01-01 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (1986, 43836, '2020-01-01 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (1987, NULL, '2020-01-01 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (1988, 82398, '2020-01-01 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (1989, NULL, '2020-01-01 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (1990, 12844, '2020-01-01 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (1991, NULL, '2020-01-01 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (1992, 39314, '2020-01-01 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (1993, NULL, '2020-01-01 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (1994, 22551, '2020-01-01 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (1995, NULL, '2020-01-01 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (1996, 4543, '2020-01-01 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (1997, NULL, '2020-01-01 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (1998, 56707, '2020-01-01 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (1999, NULL, '2020-01-01 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2000, 2751, '2020-01-01 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2001, NULL, '2020-01-01 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2002, 16045, '2020-01-01 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2003, NULL, '2020-01-01 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2004, 47228, '2020-01-01 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2005, NULL, '2020-01-01 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2006, 78897, '2020-01-01 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2007, NULL, '2020-01-01 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2008, 51233, '2020-01-01 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2009, NULL, '2020-01-01 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2010, 86167, '2020-01-01 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2011, NULL, '2020-01-01 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2012, 5460, '2020-01-01 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2013, NULL, '2020-01-01 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2014, 37860, '2020-01-01 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2015, NULL, '2020-01-01 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2016, 84830, '2020-01-01 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2017, NULL, '2020-01-01 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2018, 61910, '2020-01-01 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2019, NULL, '2020-01-01 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2020, 38369, '2020-01-01 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2021, NULL, '2020-01-01 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2022, 11822, '2020-01-01 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2023, NULL, '2020-01-01 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2024, 88184, '2020-01-01 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2025, NULL, '2020-01-01 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2026, 88421, '2020-01-01 14:00:00+00', 'ENTRY_THEME', 74155, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2027, NULL, '2020-01-01 14:00:00+00', 'ENTRY_THEME', 70067, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2028, 77960, '2020-01-01 14:00:00+00', 'ENTRY_THEME', 59557, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2029, NULL, '2020-01-01 14:00:00+00', 'ENTRY_THEME', 12641, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2030, 18708, '2020-01-01 14:00:00+00', 'ENTRY_THEME', 67089, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2031, NULL, '2020-01-01 14:00:00+00', 'ENTRY_THEME', 15741, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2032, 72311, '2020-01-01 14:00:00+00', 'ENTRY_THEME', 89263, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2033, NULL, '2020-01-01 14:00:00+00', 'DELETE_THEME', 40476, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2034, 25995, '2020-01-01 14:00:00+00', 'DELETE_THEME', 90167, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2035, NULL, '2020-01-01 14:00:00+00', 'DELETE_THEME', 40809, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2036, 8289, '2020-01-01 14:00:00+00', 'DELETE_THEME', 94429, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2037, NULL, '2020-01-01 14:00:00+00', 'DELETE_THEME', 80186, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2038, 53071, '2020-01-01 14:00:00+00', 'DELETE_THEME', 2305, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2039, NULL, '2020-01-01 14:00:00+00', 'DELETE_THEME', 49262, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2040, 46223, '2020-01-01 14:00:00+00', 'DELETE_THEME', 59900, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2041, NULL, '2020-01-01 14:00:00+00', 'WRITE_MESSAGE', 43698, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2042, 68880, '2020-01-01 14:00:00+00', 'WRITE_MESSAGE', 10355, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2043, NULL, '2020-01-01 14:00:00+00', 'WRITE_MESSAGE', 89720, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2044, 78520, '2020-01-01 14:00:00+00', 'WRITE_MESSAGE', 40593, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2045, NULL, '2020-01-01 14:00:00+00', 'WRITE_MESSAGE', 77324, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2046, 16966, '2020-01-01 14:00:00+00', 'WRITE_MESSAGE', 51864, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2047, NULL, '2020-01-01 14:00:00+00', 'WRITE_MESSAGE', 76838, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2048, 47418, '2020-01-01 14:00:00+00', 'WRITE_MESSAGE', 5779, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2049, NULL, '2020-01-01 14:00:00+00', 'WRITE_MESSAGE', 91688, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2050, 88062, '2020-01-01 14:00:00+00', 'WRITE_MESSAGE', 98153, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2051, NULL, '2020-01-01 14:00:00+00', 'WRITE_MESSAGE', 63650, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2052, 26208, '2020-01-02 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2053, NULL, '2020-01-02 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2054, 70048, '2020-01-02 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2055, NULL, '2020-01-02 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2056, 33082, '2020-01-02 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2057, NULL, '2020-01-02 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2058, 79240, '2020-01-02 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2059, NULL, '2020-01-02 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2060, 72792, '2020-01-02 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2061, NULL, '2020-01-02 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2062, 46198, '2020-01-02 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2063, NULL, '2020-01-02 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2064, 2548, '2020-01-02 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2065, NULL, '2020-01-02 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2066, 8435, '2020-01-02 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2067, NULL, '2020-01-02 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2068, 39378, '2020-01-02 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2069, NULL, '2020-01-02 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2070, 74837, '2020-01-02 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2071, NULL, '2020-01-02 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2072, 68384, '2020-01-02 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2073, NULL, '2020-01-02 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2074, 52300, '2020-01-02 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2075, NULL, '2020-01-02 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2076, 4371, '2020-01-02 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2077, NULL, '2020-01-02 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2078, 80813, '2020-01-02 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2079, NULL, '2020-01-02 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2080, 98321, '2020-01-02 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2081, NULL, '2020-01-02 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2082, 33895, '2020-01-02 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2083, NULL, '2020-01-02 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2084, 12231, '2020-01-02 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2085, NULL, '2020-01-02 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2086, 2461, '2020-01-02 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2087, NULL, '2020-01-02 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2088, 33763, '2020-01-02 14:00:00+00', 'ENTRY_THEME', 55956, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2089, NULL, '2020-01-02 14:00:00+00', 'ENTRY_THEME', 97946, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2090, 66840, '2020-01-02 14:00:00+00', 'ENTRY_THEME', 98962, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2091, NULL, '2020-01-02 14:00:00+00', 'ENTRY_THEME', 90353, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2092, 50298, '2020-01-02 14:00:00+00', 'ENTRY_THEME', 86241, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2093, NULL, '2020-01-02 14:00:00+00', 'ENTRY_THEME', 67298, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2094, 44623, '2020-01-02 14:00:00+00', 'ENTRY_THEME', 55028, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2095, NULL, '2020-01-02 14:00:00+00', 'ENTRY_THEME', 57435, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2096, 62839, '2020-01-02 14:00:00+00', 'ENTRY_THEME', 93123, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2097, NULL, '2020-01-02 14:00:00+00', 'ENTRY_THEME', 80140, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2098, 50650, '2020-01-02 14:00:00+00', 'ENTRY_THEME', 6199, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2099, NULL, '2020-01-02 14:00:00+00', 'ENTRY_THEME', 22758, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2100, 37072, '2020-01-02 14:00:00+00', 'ENTRY_THEME', 75073, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2101, NULL, '2020-01-02 14:00:00+00', 'DELETE_THEME', 52537, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2102, 12396, '2020-01-02 14:00:00+00', 'DELETE_THEME', 16475, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2103, NULL, '2020-01-02 14:00:00+00', 'DELETE_THEME', 96809, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2104, 21706, '2020-01-02 14:00:00+00', 'DELETE_THEME', 20186, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2105, NULL, '2020-01-02 14:00:00+00', 'DELETE_THEME', 97704, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2106, 87236, '2020-01-02 14:00:00+00', 'DELETE_THEME', 28457, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2107, NULL, '2020-01-02 14:00:00+00', 'DELETE_THEME', 29675, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2108, 95772, '2020-01-02 14:00:00+00', 'DELETE_THEME', 74128, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2109, NULL, '2020-01-02 14:00:00+00', 'DELETE_THEME', 50184, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2110, 88547, '2020-01-02 14:00:00+00', 'DELETE_THEME', 59876, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2111, NULL, '2020-01-02 14:00:00+00', 'DELETE_THEME', 74516, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2112, 28190, '2020-01-02 14:00:00+00', 'DELETE_THEME', 46304, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2113, NULL, '2020-01-02 14:00:00+00', 'DELETE_THEME', 52697, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2114, 62941, '2020-01-02 14:00:00+00', 'DELETE_THEME', 95394, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2115, NULL, '2020-01-02 14:00:00+00', 'WRITE_MESSAGE', 91433, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2116, 60533, '2020-01-02 14:00:00+00', 'WRITE_MESSAGE', 1709, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2117, NULL, '2020-01-02 14:00:00+00', 'WRITE_MESSAGE', 84512, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2118, 83464, '2020-01-02 14:00:00+00', 'WRITE_MESSAGE', 39339, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2119, NULL, '2020-01-02 14:00:00+00', 'WRITE_MESSAGE', 57467, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2120, 13374, '2020-01-02 14:00:00+00', 'WRITE_MESSAGE', 89135, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2121, NULL, '2020-01-02 14:00:00+00', 'WRITE_MESSAGE', 14761, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2122, 89847, '2020-01-02 14:00:00+00', 'WRITE_MESSAGE', 35580, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2123, NULL, '2020-01-02 14:00:00+00', 'WRITE_MESSAGE', 37571, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2124, 95796, '2020-01-02 14:00:00+00', 'WRITE_MESSAGE', 72106, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2125, NULL, '2020-01-02 14:00:00+00', 'WRITE_MESSAGE', 8605, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2126, 16347, '2020-01-02 14:00:00+00', 'WRITE_MESSAGE', 96055, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2127, NULL, '2020-01-02 14:00:00+00', 'WRITE_MESSAGE', 12640, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2128, 86654, '2020-01-03 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2129, NULL, '2020-01-03 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2130, 111, '2020-01-03 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2131, NULL, '2020-01-03 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2132, 12845, '2020-01-03 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2133, NULL, '2020-01-03 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2134, 92453, '2020-01-03 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2135, NULL, '2020-01-03 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2136, 16051, '2020-01-03 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2137, NULL, '2020-01-03 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2138, 34843, '2020-01-03 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2139, NULL, '2020-01-03 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2140, 42212, '2020-01-03 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2141, NULL, '2020-01-03 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2142, 65274, '2020-01-03 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2143, NULL, '2020-01-03 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2144, 16347, '2020-01-03 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2145, NULL, '2020-01-03 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2146, 18944, '2020-01-03 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2147, NULL, '2020-01-03 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2148, 41140, '2020-01-03 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2149, NULL, '2020-01-03 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2150, 10186, '2020-01-03 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2151, NULL, '2020-01-03 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2152, 90308, '2020-01-03 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2153, NULL, '2020-01-03 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2154, 28465, '2020-01-03 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2155, NULL, '2020-01-03 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2156, 49676, '2020-01-03 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2157, NULL, '2020-01-03 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2158, 46391, '2020-01-03 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2159, NULL, '2020-01-03 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2160, 41466, '2020-01-03 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2161, NULL, '2020-01-03 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2162, 720, '2020-01-03 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2163, NULL, '2020-01-03 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2164, 46514, '2020-01-03 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2165, NULL, '2020-01-03 14:00:00+00', 'ENTRY_THEME', 78258, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2166, 26639, '2020-01-03 14:00:00+00', 'ENTRY_THEME', 10815, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2167, NULL, '2020-01-03 14:00:00+00', 'ENTRY_THEME', 90326, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2168, 15385, '2020-01-03 14:00:00+00', 'ENTRY_THEME', 88081, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2169, NULL, '2020-01-03 14:00:00+00', 'ENTRY_THEME', 34717, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2170, 92094, '2020-01-03 14:00:00+00', 'ENTRY_THEME', 32986, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2171, NULL, '2020-01-03 14:00:00+00', 'ENTRY_THEME', 38252, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2172, 29918, '2020-01-03 14:00:00+00', 'ENTRY_THEME', 77993, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2173, NULL, '2020-01-03 14:00:00+00', 'ENTRY_THEME', 7357, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2174, 93679, '2020-01-03 14:00:00+00', 'ENTRY_THEME', 28696, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2175, NULL, '2020-01-03 14:00:00+00', 'ENTRY_THEME', 56635, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2176, 47314, '2020-01-03 14:00:00+00', 'DELETE_THEME', 63095, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2177, NULL, '2020-01-03 14:00:00+00', 'DELETE_THEME', 90436, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2178, 53303, '2020-01-03 14:00:00+00', 'DELETE_THEME', 5790, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2179, NULL, '2020-01-03 14:00:00+00', 'DELETE_THEME', 93136, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2180, 38709, '2020-01-03 14:00:00+00', 'DELETE_THEME', 49555, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2181, NULL, '2020-01-03 14:00:00+00', 'DELETE_THEME', 55120, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2182, 73035, '2020-01-03 14:00:00+00', 'DELETE_THEME', 75299, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2183, NULL, '2020-01-03 14:00:00+00', 'DELETE_THEME', 80678, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2184, 92990, '2020-01-03 14:00:00+00', 'WRITE_MESSAGE', 2448, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2185, NULL, '2020-01-03 14:00:00+00', 'WRITE_MESSAGE', 47325, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2186, 53658, '2020-01-03 14:00:00+00', 'WRITE_MESSAGE', 72033, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2187, NULL, '2020-01-03 14:00:00+00', 'WRITE_MESSAGE', 85551, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2188, 29445, '2020-01-03 14:00:00+00', 'WRITE_MESSAGE', 77927, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2189, NULL, '2020-01-03 14:00:00+00', 'WRITE_MESSAGE', 28952, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2190, 29811, '2020-01-03 14:00:00+00', 'WRITE_MESSAGE', 59572, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2191, NULL, '2020-01-04 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2192, 77832, '2020-01-04 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2193, NULL, '2020-01-04 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2194, 99578, '2020-01-04 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2195, NULL, '2020-01-04 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2196, 57024, '2020-01-04 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2197, NULL, '2020-01-04 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2198, 6458, '2020-01-04 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2199, NULL, '2020-01-04 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2200, 11160, '2020-01-04 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2201, NULL, '2020-01-04 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2202, 7529, '2020-01-04 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2203, NULL, '2020-01-04 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2204, 84148, '2020-01-04 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2205, NULL, '2020-01-04 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2206, 456, '2020-01-04 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2207, NULL, '2020-01-04 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2208, 80782, '2020-01-04 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2209, NULL, '2020-01-04 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2210, 10023, '2020-01-04 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2211, NULL, '2020-01-04 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2212, 29325, '2020-01-04 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2213, NULL, '2020-01-04 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2214, 80895, '2020-01-04 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2215, NULL, '2020-01-04 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2216, 86456, '2020-01-04 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2217, NULL, '2020-01-04 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2218, 60488, '2020-01-04 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2219, NULL, '2020-01-04 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2220, 29289, '2020-01-04 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2221, NULL, '2020-01-04 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2222, 88112, '2020-01-04 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2223, NULL, '2020-01-04 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2224, 17704, '2020-01-04 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2225, NULL, '2020-01-04 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2226, 58653, '2020-01-04 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2227, NULL, '2020-01-04 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2228, 39088, '2020-01-04 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2229, NULL, '2020-01-04 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2230, 26083, '2020-01-04 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2231, NULL, '2020-01-04 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2232, 31582, '2020-01-04 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2233, NULL, '2020-01-04 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2234, 37147, '2020-01-04 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2235, NULL, '2020-01-04 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2236, 95436, '2020-01-04 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2237, NULL, '2020-01-04 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2238, 8857, '2020-01-04 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2239, NULL, '2020-01-04 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2240, 31518, '2020-01-04 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2241, NULL, '2020-01-04 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2242, 34498, '2020-01-04 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2243, NULL, '2020-01-04 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2244, 39546, '2020-01-04 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2245, NULL, '2020-01-04 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2246, 3234, '2020-01-04 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2247, NULL, '2020-01-04 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2248, 54024, '2020-01-04 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2249, NULL, '2020-01-04 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2250, 5122, '2020-01-04 14:00:00+00', 'ENTRY_THEME', 16541, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2251, NULL, '2020-01-04 14:00:00+00', 'ENTRY_THEME', 91895, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2252, 77116, '2020-01-04 14:00:00+00', 'ENTRY_THEME', 54836, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2253, NULL, '2020-01-04 14:00:00+00', 'ENTRY_THEME', 48766, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2254, 94827, '2020-01-04 14:00:00+00', 'ENTRY_THEME', 82744, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2255, NULL, '2020-01-04 14:00:00+00', 'ENTRY_THEME', 33564, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2256, 53860, '2020-01-04 14:00:00+00', 'ENTRY_THEME', 89268, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2257, NULL, '2020-01-04 14:00:00+00', 'ENTRY_THEME', 93591, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2258, 46890, '2020-01-04 14:00:00+00', 'ENTRY_THEME', 76203, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2259, NULL, '2020-01-04 14:00:00+00', 'ENTRY_THEME', 31973, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2260, 27145, '2020-01-04 14:00:00+00', 'ENTRY_THEME', 84250, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2261, NULL, '2020-01-04 14:00:00+00', 'DELETE_THEME', 55416, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2262, 89106, '2020-01-04 14:00:00+00', 'DELETE_THEME', 32309, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2263, NULL, '2020-01-04 14:00:00+00', 'DELETE_THEME', 55274, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2264, 70187, '2020-01-04 14:00:00+00', 'DELETE_THEME', 41050, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2265, NULL, '2020-01-04 14:00:00+00', 'DELETE_THEME', 47420, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2266, 56448, '2020-01-04 14:00:00+00', 'DELETE_THEME', 1917, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2267, NULL, '2020-01-04 14:00:00+00', 'DELETE_THEME', 49450, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2268, 13315, '2020-01-04 14:00:00+00', 'DELETE_THEME', 33587, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2269, NULL, '2020-01-04 14:00:00+00', 'DELETE_THEME', 37700, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2270, 2642, '2020-01-04 14:00:00+00', 'DELETE_THEME', 14786, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2271, NULL, '2020-01-04 14:00:00+00', 'WRITE_MESSAGE', 87920, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2272, 30657, '2020-01-04 14:00:00+00', 'WRITE_MESSAGE', 23198, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2273, NULL, '2020-01-04 14:00:00+00', 'WRITE_MESSAGE', 43416, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2274, 68173, '2020-01-04 14:00:00+00', 'WRITE_MESSAGE', 23412, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2275, NULL, '2020-01-04 14:00:00+00', 'WRITE_MESSAGE', 42490, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2276, 22185, '2020-01-04 14:00:00+00', 'WRITE_MESSAGE', 66514, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2277, NULL, '2020-01-05 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2278, 91227, '2020-01-05 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2279, NULL, '2020-01-05 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2280, 67600, '2020-01-05 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2281, NULL, '2020-01-05 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2282, 29671, '2020-01-05 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2283, NULL, '2020-01-05 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2284, 23781, '2020-01-05 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2285, NULL, '2020-01-05 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2286, 23304, '2020-01-05 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2287, NULL, '2020-01-05 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2288, 65012, '2020-01-05 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2289, NULL, '2020-01-05 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2290, 83617, '2020-01-05 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2291, NULL, '2020-01-05 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2292, 50178, '2020-01-05 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2293, NULL, '2020-01-05 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2294, 4057, '2020-01-05 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2295, NULL, '2020-01-05 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2296, 26044, '2020-01-05 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2297, NULL, '2020-01-05 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2298, 67131, '2020-01-05 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2299, NULL, '2020-01-05 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2300, 2868, '2020-01-05 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2301, NULL, '2020-01-05 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2302, 92000, '2020-01-05 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2303, NULL, '2020-01-05 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2304, 6280, '2020-01-05 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2305, NULL, '2020-01-05 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2306, 56859, '2020-01-05 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2307, NULL, '2020-01-05 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2308, 13482, '2020-01-05 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2309, NULL, '2020-01-05 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2310, 27419, '2020-01-05 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2311, NULL, '2020-01-05 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2312, 87865, '2020-01-05 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2313, NULL, '2020-01-05 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2314, 60298, '2020-01-05 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2315, NULL, '2020-01-05 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2316, 49390, '2020-01-05 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2317, NULL, '2020-01-05 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2318, 14913, '2020-01-05 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2319, NULL, '2020-01-05 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2320, 82182, '2020-01-05 14:00:00+00', 'ENTRY_THEME', 10849, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2321, NULL, '2020-01-05 14:00:00+00', 'ENTRY_THEME', 18723, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2322, 71677, '2020-01-05 14:00:00+00', 'ENTRY_THEME', 85900, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2323, NULL, '2020-01-05 14:00:00+00', 'ENTRY_THEME', 34452, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2324, 3670, '2020-01-05 14:00:00+00', 'ENTRY_THEME', 77621, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2325, NULL, '2020-01-05 14:00:00+00', 'ENTRY_THEME', 90431, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2326, 29394, '2020-01-05 14:00:00+00', 'ENTRY_THEME', 3981, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2327, NULL, '2020-01-05 14:00:00+00', 'ENTRY_THEME', 17560, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2328, 11533, '2020-01-05 14:00:00+00', 'ENTRY_THEME', 80209, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2329, NULL, '2020-01-05 14:00:00+00', 'ENTRY_THEME', 26486, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2330, 92010, '2020-01-05 14:00:00+00', 'ENTRY_THEME', 5539, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2331, NULL, '2020-01-05 14:00:00+00', 'ENTRY_THEME', 38511, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2332, 41777, '2020-01-05 14:00:00+00', 'DELETE_THEME', 27979, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2333, NULL, '2020-01-05 14:00:00+00', 'DELETE_THEME', 40565, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2334, 80934, '2020-01-05 14:00:00+00', 'DELETE_THEME', 78529, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2335, NULL, '2020-01-05 14:00:00+00', 'DELETE_THEME', 6032, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2336, 2151, '2020-01-05 14:00:00+00', 'DELETE_THEME', 40911, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2337, NULL, '2020-01-05 14:00:00+00', 'DELETE_THEME', 31136, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2338, 43272, '2020-01-05 14:00:00+00', 'DELETE_THEME', 3265, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2339, NULL, '2020-01-05 14:00:00+00', 'WRITE_MESSAGE', 4519, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2340, 30158, '2020-01-05 14:00:00+00', 'WRITE_MESSAGE', 97832, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2341, NULL, '2020-01-05 14:00:00+00', 'WRITE_MESSAGE', 15828, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2342, 32456, '2020-01-05 14:00:00+00', 'WRITE_MESSAGE', 72360, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2343, NULL, '2020-01-05 14:00:00+00', 'WRITE_MESSAGE', 1754, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2344, 69275, '2020-01-05 14:00:00+00', 'WRITE_MESSAGE', 54776, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2345, NULL, '2020-01-05 14:00:00+00', 'WRITE_MESSAGE', 44164, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2346, 99741, '2020-01-05 14:00:00+00', 'WRITE_MESSAGE', 93678, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2347, NULL, '2020-01-05 14:00:00+00', 'WRITE_MESSAGE', 13281, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2348, 94283, '2020-01-06 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2349, NULL, '2020-01-06 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2350, 30224, '2020-01-06 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2351, NULL, '2020-01-06 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2352, 21690, '2020-01-06 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2353, NULL, '2020-01-06 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2354, 91823, '2020-01-06 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2355, NULL, '2020-01-06 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2356, 21313, '2020-01-06 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2357, NULL, '2020-01-06 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2358, 46270, '2020-01-06 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2359, NULL, '2020-01-06 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2360, 59141, '2020-01-06 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2361, NULL, '2020-01-06 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2362, 24216, '2020-01-06 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2363, NULL, '2020-01-06 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2364, 40985, '2020-01-06 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2365, NULL, '2020-01-06 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2366, 19334, '2020-01-06 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2367, NULL, '2020-01-06 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2368, 15195, '2020-01-06 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2369, NULL, '2020-01-06 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2370, 43847, '2020-01-06 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2371, NULL, '2020-01-06 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2372, 69054, '2020-01-06 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2373, NULL, '2020-01-06 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2374, 35360, '2020-01-06 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2375, NULL, '2020-01-06 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2376, 93739, '2020-01-06 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2377, NULL, '2020-01-06 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2378, 90818, '2020-01-06 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2379, NULL, '2020-01-06 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2380, 48413, '2020-01-06 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2381, NULL, '2020-01-06 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2382, 31315, '2020-01-06 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2383, NULL, '2020-01-06 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2384, 5864, '2020-01-06 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2385, NULL, '2020-01-06 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2386, 51217, '2020-01-06 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2387, NULL, '2020-01-06 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2388, 56531, '2020-01-06 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2389, NULL, '2020-01-06 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2390, 2318, '2020-01-06 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2391, NULL, '2020-01-06 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2392, 30219, '2020-01-06 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2393, NULL, '2020-01-06 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2394, 26163, '2020-01-06 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2395, NULL, '2020-01-06 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2396, 98016, '2020-01-06 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2397, NULL, '2020-01-06 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2398, 61302, '2020-01-06 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2399, NULL, '2020-01-06 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2400, 13117, '2020-01-06 14:00:00+00', 'ENTRY_THEME', 70316, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2401, NULL, '2020-01-06 14:00:00+00', 'ENTRY_THEME', 59732, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2402, 92972, '2020-01-06 14:00:00+00', 'ENTRY_THEME', 98522, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2403, NULL, '2020-01-06 14:00:00+00', 'ENTRY_THEME', 68065, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2404, 45327, '2020-01-06 14:00:00+00', 'ENTRY_THEME', 36964, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2405, NULL, '2020-01-06 14:00:00+00', 'ENTRY_THEME', 52146, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2406, 60534, '2020-01-06 14:00:00+00', 'ENTRY_THEME', 95794, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2407, NULL, '2020-01-06 14:00:00+00', 'ENTRY_THEME', 54913, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2408, 25573, '2020-01-06 14:00:00+00', 'ENTRY_THEME', 14102, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2409, NULL, '2020-01-06 14:00:00+00', 'ENTRY_THEME', 60615, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2410, 95559, '2020-01-06 14:00:00+00', 'ENTRY_THEME', 53236, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2411, NULL, '2020-01-06 14:00:00+00', 'ENTRY_THEME', 63973, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2412, 68052, '2020-01-06 14:00:00+00', 'ENTRY_THEME', 26384, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2413, NULL, '2020-01-06 14:00:00+00', 'ENTRY_THEME', 15570, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2414, 60254, '2020-01-06 14:00:00+00', 'ENTRY_THEME', 70317, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2415, NULL, '2020-01-06 14:00:00+00', 'DELETE_THEME', 32880, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2416, 80937, '2020-01-06 14:00:00+00', 'DELETE_THEME', 60702, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2417, NULL, '2020-01-06 14:00:00+00', 'DELETE_THEME', 28221, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2418, 5432, '2020-01-06 14:00:00+00', 'DELETE_THEME', 46476, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2419, NULL, '2020-01-06 14:00:00+00', 'DELETE_THEME', 89081, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2420, 1183, '2020-01-06 14:00:00+00', 'DELETE_THEME', 71556, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2421, NULL, '2020-01-06 14:00:00+00', 'WRITE_MESSAGE', 82002, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2422, 3710, '2020-01-06 14:00:00+00', 'WRITE_MESSAGE', 78132, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2423, NULL, '2020-01-06 14:00:00+00', 'WRITE_MESSAGE', 88073, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2424, 76408, '2020-01-06 14:00:00+00', 'WRITE_MESSAGE', 12204, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2425, NULL, '2020-01-06 14:00:00+00', 'WRITE_MESSAGE', 57693, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2426, 48249, '2020-01-06 14:00:00+00', 'WRITE_MESSAGE', 41987, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2427, NULL, '2020-01-06 14:00:00+00', 'WRITE_MESSAGE', 98705, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2428, 93037, '2020-01-07 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2429, NULL, '2020-01-07 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2430, 4162, '2020-01-07 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2431, NULL, '2020-01-07 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2432, 21192, '2020-01-07 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2433, NULL, '2020-01-07 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2434, 68295, '2020-01-07 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2435, NULL, '2020-01-07 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2436, 14730, '2020-01-07 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2437, NULL, '2020-01-07 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2438, 71497, '2020-01-07 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2439, NULL, '2020-01-07 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2440, 62012, '2020-01-07 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2441, NULL, '2020-01-07 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2442, 52398, '2020-01-07 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2443, NULL, '2020-01-07 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2444, 19675, '2020-01-07 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2445, NULL, '2020-01-07 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2446, 53500, '2020-01-07 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2447, NULL, '2020-01-07 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2448, 44457, '2020-01-07 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2449, NULL, '2020-01-07 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2450, 21924, '2020-01-07 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2451, NULL, '2020-01-07 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2452, 47042, '2020-01-07 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2453, NULL, '2020-01-07 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2454, 69715, '2020-01-07 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2455, NULL, '2020-01-07 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2456, 88120, '2020-01-07 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2457, NULL, '2020-01-07 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2458, 14828, '2020-01-07 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2459, NULL, '2020-01-07 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2460, 26574, '2020-01-07 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2461, NULL, '2020-01-07 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2462, 2441, '2020-01-07 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2463, NULL, '2020-01-07 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2464, 48719, '2020-01-07 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2465, NULL, '2020-01-07 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2466, 71007, '2020-01-07 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2467, NULL, '2020-01-07 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2468, 32328, '2020-01-07 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2469, NULL, '2020-01-07 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2470, 35414, '2020-01-07 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2471, NULL, '2020-01-07 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2472, 55617, '2020-01-07 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2473, NULL, '2020-01-07 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2474, 24511, '2020-01-07 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2475, NULL, '2020-01-07 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2476, 76826, '2020-01-07 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2477, NULL, '2020-01-07 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2478, 49830, '2020-01-07 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2479, NULL, '2020-01-07 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2480, 29593, '2020-01-07 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2481, NULL, '2020-01-07 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2482, 55490, '2020-01-07 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2483, NULL, '2020-01-07 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2484, 19307, '2020-01-07 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2485, NULL, '2020-01-07 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2486, 31477, '2020-01-07 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2487, NULL, '2020-01-07 14:00:00+00', 'ENTRY_THEME', 30643, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2488, 45594, '2020-01-07 14:00:00+00', 'ENTRY_THEME', 16300, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2489, NULL, '2020-01-07 14:00:00+00', 'ENTRY_THEME', 6687, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2490, 78386, '2020-01-07 14:00:00+00', 'ENTRY_THEME', 31409, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2491, NULL, '2020-01-07 14:00:00+00', 'ENTRY_THEME', 73304, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2492, 74904, '2020-01-07 14:00:00+00', 'ENTRY_THEME', 85323, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2493, NULL, '2020-01-07 14:00:00+00', 'ENTRY_THEME', 49795, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2494, 87591, '2020-01-07 14:00:00+00', 'ENTRY_THEME', 29156, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2495, NULL, '2020-01-07 14:00:00+00', 'ENTRY_THEME', 15864, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2496, 83452, '2020-01-07 14:00:00+00', 'ENTRY_THEME', 56963, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2497, NULL, '2020-01-07 14:00:00+00', 'ENTRY_THEME', 47727, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2498, 30999, '2020-01-07 14:00:00+00', 'ENTRY_THEME', 67360, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2499, NULL, '2020-01-07 14:00:00+00', 'ENTRY_THEME', 7593, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2500, 91276, '2020-01-07 14:00:00+00', 'ENTRY_THEME', 68237, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2501, NULL, '2020-01-07 14:00:00+00', 'ENTRY_THEME', 76650, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2502, 51906, '2020-01-07 14:00:00+00', 'DELETE_THEME', 9678, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2503, NULL, '2020-01-07 14:00:00+00', 'DELETE_THEME', 3822, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2504, 52080, '2020-01-07 14:00:00+00', 'DELETE_THEME', 26989, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2505, NULL, '2020-01-07 14:00:00+00', 'DELETE_THEME', 17879, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2506, 58677, '2020-01-07 14:00:00+00', 'DELETE_THEME', 85971, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2507, NULL, '2020-01-07 14:00:00+00', 'DELETE_THEME', 41050, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2508, 52041, '2020-01-07 14:00:00+00', 'DELETE_THEME', 13457, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2509, NULL, '2020-01-07 14:00:00+00', 'DELETE_THEME', 12445, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2510, 80274, '2020-01-07 14:00:00+00', 'DELETE_THEME', 62138, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2511, NULL, '2020-01-07 14:00:00+00', 'DELETE_THEME', 89205, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2512, 2209, '2020-01-07 14:00:00+00', 'DELETE_THEME', 30932, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2513, NULL, '2020-01-07 14:00:00+00', 'DELETE_THEME', 15601, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2514, 6123, '2020-01-07 14:00:00+00', 'DELETE_THEME', 55364, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2515, NULL, '2020-01-07 14:00:00+00', 'WRITE_MESSAGE', 60130, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2516, 35531, '2020-01-07 14:00:00+00', 'WRITE_MESSAGE', 11175, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2517, NULL, '2020-01-07 14:00:00+00', 'WRITE_MESSAGE', 71764, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2518, 31707, '2020-01-07 14:00:00+00', 'WRITE_MESSAGE', 19696, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2519, NULL, '2020-01-07 14:00:00+00', 'WRITE_MESSAGE', 78482, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2520, 48627, '2020-01-07 14:00:00+00', 'WRITE_MESSAGE', 96669, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2521, NULL, '2020-01-07 14:00:00+00', 'WRITE_MESSAGE', 72695, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2522, 88647, '2020-01-07 14:00:00+00', 'WRITE_MESSAGE', 79939, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2523, NULL, '2020-01-07 14:00:00+00', 'WRITE_MESSAGE', 96529, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2524, 26969, '2020-01-07 14:00:00+00', 'WRITE_MESSAGE', 52537, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2525, NULL, '2020-01-07 14:00:00+00', 'WRITE_MESSAGE', 40688, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2526, 19374, '2020-01-07 14:00:00+00', 'WRITE_MESSAGE', 91673, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2527, NULL, '2020-01-07 14:00:00+00', 'WRITE_MESSAGE', 16887, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2528, 98956, '2020-01-07 14:00:00+00', 'WRITE_MESSAGE', 56972, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2529, NULL, '2020-01-08 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2530, 33760, '2020-01-08 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2531, NULL, '2020-01-08 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2532, 72944, '2020-01-08 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2533, NULL, '2020-01-08 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2534, 9408, '2020-01-08 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2535, NULL, '2020-01-08 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2536, 77961, '2020-01-08 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2537, NULL, '2020-01-08 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2538, 3615, '2020-01-08 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2539, NULL, '2020-01-08 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2540, 55620, '2020-01-08 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2541, NULL, '2020-01-08 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2542, 1085, '2020-01-08 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2543, NULL, '2020-01-08 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2544, 58905, '2020-01-08 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2545, NULL, '2020-01-08 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2546, 96505, '2020-01-08 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2547, NULL, '2020-01-08 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2548, 43152, '2020-01-08 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2549, NULL, '2020-01-08 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2550, 5451, '2020-01-08 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2551, NULL, '2020-01-08 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2552, 71622, '2020-01-08 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2553, NULL, '2020-01-08 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2554, 86583, '2020-01-08 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2555, NULL, '2020-01-08 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2556, 78264, '2020-01-08 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2557, NULL, '2020-01-08 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2558, 30864, '2020-01-08 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2559, NULL, '2020-01-08 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2560, 98018, '2020-01-08 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2561, NULL, '2020-01-08 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2562, 24553, '2020-01-08 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2563, NULL, '2020-01-08 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2564, 11592, '2020-01-08 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2565, NULL, '2020-01-08 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2566, 64344, '2020-01-08 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2567, NULL, '2020-01-08 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2568, 49607, '2020-01-08 14:00:00+00', 'ENTRY_THEME', 23577, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2569, NULL, '2020-01-08 14:00:00+00', 'ENTRY_THEME', 61794, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2570, 13787, '2020-01-08 14:00:00+00', 'ENTRY_THEME', 3084, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2571, NULL, '2020-01-08 14:00:00+00', 'ENTRY_THEME', 58167, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2572, 35626, '2020-01-08 14:00:00+00', 'ENTRY_THEME', 89742, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2573, NULL, '2020-01-08 14:00:00+00', 'ENTRY_THEME', 36522, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2574, 24067, '2020-01-08 14:00:00+00', 'ENTRY_THEME', 95012, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2575, NULL, '2020-01-08 14:00:00+00', 'ENTRY_THEME', 56539, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2576, 72440, '2020-01-08 14:00:00+00', 'ENTRY_THEME', 23187, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2577, NULL, '2020-01-08 14:00:00+00', 'ENTRY_THEME', 17081, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2578, 87077, '2020-01-08 14:00:00+00', 'ENTRY_THEME', 85485, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2579, NULL, '2020-01-08 14:00:00+00', 'ENTRY_THEME', 91569, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2580, 84521, '2020-01-08 14:00:00+00', 'DELETE_THEME', 96026, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2581, NULL, '2020-01-08 14:00:00+00', 'DELETE_THEME', 66820, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2582, 39497, '2020-01-08 14:00:00+00', 'DELETE_THEME', 34221, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2583, NULL, '2020-01-08 14:00:00+00', 'DELETE_THEME', 52179, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2584, 29620, '2020-01-08 14:00:00+00', 'DELETE_THEME', 41444, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2585, NULL, '2020-01-08 14:00:00+00', 'WRITE_MESSAGE', 73674, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2586, 77404, '2020-01-08 14:00:00+00', 'WRITE_MESSAGE', 32828, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2587, NULL, '2020-01-08 14:00:00+00', 'WRITE_MESSAGE', 89877, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2588, 82307, '2020-01-08 14:00:00+00', 'WRITE_MESSAGE', 28195, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2589, NULL, '2020-01-08 14:00:00+00', 'WRITE_MESSAGE', 6369, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2590, 4434, '2020-01-08 14:00:00+00', 'WRITE_MESSAGE', 96041, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2591, NULL, '2020-01-08 14:00:00+00', 'WRITE_MESSAGE', 26295, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2592, 43258, '2020-01-08 14:00:00+00', 'WRITE_MESSAGE', 80533, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2593, NULL, '2020-01-08 14:00:00+00', 'WRITE_MESSAGE', 9188, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2594, 75114, '2020-01-08 14:00:00+00', 'WRITE_MESSAGE', 88287, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2595, NULL, '2020-01-08 14:00:00+00', 'WRITE_MESSAGE', 88259, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2596, 91275, '2020-01-08 14:00:00+00', 'WRITE_MESSAGE', 4251, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2597, NULL, '2020-01-09 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2598, 28425, '2020-01-09 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2599, NULL, '2020-01-09 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2600, 75374, '2020-01-09 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2601, NULL, '2020-01-09 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2602, 32076, '2020-01-09 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2603, NULL, '2020-01-09 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2604, 60424, '2020-01-09 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2605, NULL, '2020-01-09 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2606, 7290, '2020-01-09 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2607, NULL, '2020-01-09 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2608, 18646, '2020-01-09 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2609, NULL, '2020-01-09 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2610, 4248, '2020-01-09 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2611, NULL, '2020-01-09 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2612, 3080, '2020-01-09 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2613, NULL, '2020-01-09 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2614, 8139, '2020-01-09 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2615, NULL, '2020-01-09 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2616, 94197, '2020-01-09 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2617, NULL, '2020-01-09 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2618, 57921, '2020-01-09 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2619, NULL, '2020-01-09 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2620, 54981, '2020-01-09 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2621, NULL, '2020-01-09 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2622, 52846, '2020-01-09 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2623, NULL, '2020-01-09 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2624, 12060, '2020-01-09 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2625, NULL, '2020-01-09 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2626, 3210, '2020-01-09 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2627, NULL, '2020-01-09 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2628, 91803, '2020-01-09 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2629, NULL, '2020-01-09 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2630, 67130, '2020-01-09 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2631, NULL, '2020-01-09 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2632, 35797, '2020-01-09 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2633, NULL, '2020-01-09 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2634, 74122, '2020-01-09 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2635, NULL, '2020-01-09 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2636, 44483, '2020-01-09 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2637, NULL, '2020-01-09 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2638, 75280, '2020-01-09 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2639, NULL, '2020-01-09 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2640, 68504, '2020-01-09 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2641, NULL, '2020-01-09 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2642, 43433, '2020-01-09 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2643, NULL, '2020-01-09 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2644, 74658, '2020-01-09 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2645, NULL, '2020-01-09 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2646, 63543, '2020-01-09 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2647, NULL, '2020-01-09 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2648, 45179, '2020-01-09 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2649, NULL, '2020-01-09 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2650, 97048, '2020-01-09 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2651, NULL, '2020-01-09 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2652, 22342, '2020-01-09 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2653, NULL, '2020-01-09 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2654, 71095, '2020-01-09 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2655, NULL, '2020-01-09 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2656, 43758, '2020-01-09 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2657, NULL, '2020-01-09 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2658, 99730, '2020-01-09 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2659, NULL, '2020-01-09 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2660, 48226, '2020-01-09 14:00:00+00', 'ENTRY_THEME', 33549, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2661, NULL, '2020-01-09 14:00:00+00', 'ENTRY_THEME', 37336, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2662, 29547, '2020-01-09 14:00:00+00', 'ENTRY_THEME', 88379, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2663, NULL, '2020-01-09 14:00:00+00', 'ENTRY_THEME', 3206, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2664, 6447, '2020-01-09 14:00:00+00', 'ENTRY_THEME', 32639, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2665, NULL, '2020-01-09 14:00:00+00', 'ENTRY_THEME', 69628, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2666, 55711, '2020-01-09 14:00:00+00', 'ENTRY_THEME', 47111, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2667, NULL, '2020-01-09 14:00:00+00', 'ENTRY_THEME', 8024, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2668, 76873, '2020-01-09 14:00:00+00', 'ENTRY_THEME', 98085, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2669, NULL, '2020-01-09 14:00:00+00', 'DELETE_THEME', 46929, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2670, 55536, '2020-01-09 14:00:00+00', 'DELETE_THEME', 41831, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2671, NULL, '2020-01-09 14:00:00+00', 'DELETE_THEME', 34808, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2672, 56166, '2020-01-09 14:00:00+00', 'DELETE_THEME', 47469, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2673, NULL, '2020-01-09 14:00:00+00', 'DELETE_THEME', 5750, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2674, 41769, '2020-01-09 14:00:00+00', 'DELETE_THEME', 27099, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2675, NULL, '2020-01-09 14:00:00+00', 'DELETE_THEME', 21934, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2676, 69520, '2020-01-09 14:00:00+00', 'DELETE_THEME', 14728, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2677, NULL, '2020-01-09 14:00:00+00', 'DELETE_THEME', 74724, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2678, 9076, '2020-01-09 14:00:00+00', 'WRITE_MESSAGE', 93168, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2679, NULL, '2020-01-09 14:00:00+00', 'WRITE_MESSAGE', 87793, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2680, 32118, '2020-01-09 14:00:00+00', 'WRITE_MESSAGE', 89619, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2681, NULL, '2020-01-09 14:00:00+00', 'WRITE_MESSAGE', 70359, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2682, 49189, '2020-01-09 14:00:00+00', 'WRITE_MESSAGE', 11013, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2683, NULL, '2020-01-09 14:00:00+00', 'WRITE_MESSAGE', 95331, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2684, 97565, '2020-01-09 14:00:00+00', 'WRITE_MESSAGE', 30912, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2685, NULL, '2020-01-09 14:00:00+00', 'WRITE_MESSAGE', 10297, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2686, 62949, '2020-01-09 14:00:00+00', 'WRITE_MESSAGE', 82404, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2687, NULL, '2020-01-09 14:00:00+00', 'WRITE_MESSAGE', 5480, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2688, 96062, '2020-01-09 14:00:00+00', 'WRITE_MESSAGE', 18517, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2689, NULL, '2020-01-09 14:00:00+00', 'WRITE_MESSAGE', 13472, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2690, 54672, '2020-01-09 14:00:00+00', 'WRITE_MESSAGE', 20160, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2691, NULL, '2020-01-10 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2692, 69264, '2020-01-10 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2693, NULL, '2020-01-10 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2694, 228, '2020-01-10 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2695, NULL, '2020-01-10 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2696, 15256, '2020-01-10 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2697, NULL, '2020-01-10 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2698, 24725, '2020-01-10 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2699, NULL, '2020-01-10 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2700, 51024, '2020-01-10 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2701, NULL, '2020-01-10 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2702, 37466, '2020-01-10 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2703, NULL, '2020-01-10 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2704, 70710, '2020-01-10 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2705, NULL, '2020-01-10 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2706, 82866, '2020-01-10 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2707, NULL, '2020-01-10 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2708, 30982, '2020-01-10 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2709, NULL, '2020-01-10 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2710, 84784, '2020-01-10 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2711, NULL, '2020-01-10 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2712, 59256, '2020-01-10 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2713, NULL, '2020-01-10 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2714, 66061, '2020-01-10 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2715, NULL, '2020-01-10 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2716, 78510, '2020-01-10 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2717, NULL, '2020-01-10 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2718, 30069, '2020-01-10 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2719, NULL, '2020-01-10 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2720, 42192, '2020-01-10 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2721, NULL, '2020-01-10 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2722, 40901, '2020-01-10 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2723, NULL, '2020-01-10 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2724, 43963, '2020-01-10 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2725, NULL, '2020-01-10 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2726, 4046, '2020-01-10 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2727, NULL, '2020-01-10 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2728, 71832, '2020-01-10 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2729, NULL, '2020-01-10 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2730, 34159, '2020-01-10 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2731, NULL, '2020-01-10 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2732, 67916, '2020-01-10 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2733, NULL, '2020-01-10 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2734, 73612, '2020-01-10 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2735, NULL, '2020-01-10 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2736, 12280, '2020-01-10 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2737, NULL, '2020-01-10 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2738, 64968, '2020-01-10 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2739, NULL, '2020-01-10 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2740, 43180, '2020-01-10 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2741, NULL, '2020-01-10 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2742, 3000, '2020-01-10 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2743, NULL, '2020-01-10 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2744, 87926, '2020-01-10 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2745, NULL, '2020-01-10 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2746, 11429, '2020-01-10 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2747, NULL, '2020-01-10 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2748, 83386, '2020-01-10 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2749, NULL, '2020-01-10 14:00:00+00', 'ENTRY_THEME', 26320, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2750, 13778, '2020-01-10 14:00:00+00', 'ENTRY_THEME', 9990, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2751, NULL, '2020-01-10 14:00:00+00', 'ENTRY_THEME', 73622, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2752, 1836, '2020-01-10 14:00:00+00', 'ENTRY_THEME', 93906, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2753, NULL, '2020-01-10 14:00:00+00', 'ENTRY_THEME', 43829, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2754, 82168, '2020-01-10 14:00:00+00', 'ENTRY_THEME', 38774, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2755, NULL, '2020-01-10 14:00:00+00', 'ENTRY_THEME', 91487, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2756, 10423, '2020-01-10 14:00:00+00', 'ENTRY_THEME', 29732, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2757, NULL, '2020-01-10 14:00:00+00', 'ENTRY_THEME', 50694, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2758, 96066, '2020-01-10 14:00:00+00', 'ENTRY_THEME', 90315, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2759, NULL, '2020-01-10 14:00:00+00', 'ENTRY_THEME', 84034, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2760, 53195, '2020-01-10 14:00:00+00', 'ENTRY_THEME', 52250, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2761, NULL, '2020-01-10 14:00:00+00', 'DELETE_THEME', 97293, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2762, 15612, '2020-01-10 14:00:00+00', 'DELETE_THEME', 96066, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2763, NULL, '2020-01-10 14:00:00+00', 'DELETE_THEME', 18921, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2764, 51094, '2020-01-10 14:00:00+00', 'DELETE_THEME', 12732, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2765, NULL, '2020-01-10 14:00:00+00', 'DELETE_THEME', 18703, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2766, 50153, '2020-01-10 14:00:00+00', 'DELETE_THEME', 49639, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2767, NULL, '2020-01-10 14:00:00+00', 'DELETE_THEME', 99515, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2768, 86807, '2020-01-10 14:00:00+00', 'DELETE_THEME', 86589, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2769, NULL, '2020-01-10 14:00:00+00', 'DELETE_THEME', 67718, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2770, 28206, '2020-01-10 14:00:00+00', 'DELETE_THEME', 23892, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2771, NULL, '2020-01-10 14:00:00+00', 'WRITE_MESSAGE', 63441, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2772, 68701, '2020-01-10 14:00:00+00', 'WRITE_MESSAGE', 82498, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2773, NULL, '2020-01-10 14:00:00+00', 'WRITE_MESSAGE', 19126, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2774, 18614, '2020-01-10 14:00:00+00', 'WRITE_MESSAGE', 87315, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2775, NULL, '2020-01-10 14:00:00+00', 'WRITE_MESSAGE', 57540, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2776, 32945, '2020-01-10 14:00:00+00', 'WRITE_MESSAGE', 84125, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2777, NULL, '2020-01-10 14:00:00+00', 'WRITE_MESSAGE', 25507, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2778, 23187, '2020-01-10 14:00:00+00', 'WRITE_MESSAGE', 13753, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2779, NULL, '2020-01-10 14:00:00+00', 'WRITE_MESSAGE', 49983, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2780, 45777, '2020-01-10 14:00:00+00', 'WRITE_MESSAGE', 32869, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2781, NULL, '2020-01-10 14:00:00+00', 'WRITE_MESSAGE', 19936, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2782, 12453, '2020-01-11 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2783, NULL, '2020-01-11 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2784, 6902, '2020-01-11 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2785, NULL, '2020-01-11 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2786, 37469, '2020-01-11 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2787, NULL, '2020-01-11 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2788, 72599, '2020-01-11 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2789, NULL, '2020-01-11 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2790, 15734, '2020-01-11 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2791, NULL, '2020-01-11 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2792, 29061, '2020-01-11 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2793, NULL, '2020-01-11 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2794, 14827, '2020-01-11 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2795, NULL, '2020-01-11 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2796, 11755, '2020-01-11 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2797, NULL, '2020-01-11 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2798, 49773, '2020-01-11 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2799, NULL, '2020-01-11 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2800, 65354, '2020-01-11 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2801, NULL, '2020-01-11 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2802, 1424, '2020-01-11 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2803, NULL, '2020-01-11 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2804, 46890, '2020-01-11 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2805, NULL, '2020-01-11 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2806, 17621, '2020-01-11 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2807, NULL, '2020-01-11 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2808, 6103, '2020-01-11 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2809, NULL, '2020-01-11 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2810, 2229, '2020-01-11 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2811, NULL, '2020-01-11 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2812, 30752, '2020-01-11 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2813, NULL, '2020-01-11 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2814, 42408, '2020-01-11 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2815, NULL, '2020-01-11 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2816, 45945, '2020-01-11 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2817, NULL, '2020-01-11 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2818, 31038, '2020-01-11 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2819, NULL, '2020-01-11 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2820, 87791, '2020-01-11 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2821, NULL, '2020-01-11 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2822, 54082, '2020-01-11 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2823, NULL, '2020-01-11 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2824, 55365, '2020-01-11 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2825, NULL, '2020-01-11 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2826, 39881, '2020-01-11 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2827, NULL, '2020-01-11 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2828, 95426, '2020-01-11 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2829, NULL, '2020-01-11 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2830, 37438, '2020-01-11 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2831, NULL, '2020-01-11 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2832, 6223, '2020-01-11 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2833, NULL, '2020-01-11 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2834, 45328, '2020-01-11 14:00:00+00', 'ENTRY_THEME', 46548, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2835, NULL, '2020-01-11 14:00:00+00', 'ENTRY_THEME', 80323, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2836, 31802, '2020-01-11 14:00:00+00', 'ENTRY_THEME', 40331, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2837, NULL, '2020-01-11 14:00:00+00', 'ENTRY_THEME', 67636, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2838, 40441, '2020-01-11 14:00:00+00', 'ENTRY_THEME', 77483, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2839, NULL, '2020-01-11 14:00:00+00', 'ENTRY_THEME', 36795, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2840, 12527, '2020-01-11 14:00:00+00', 'ENTRY_THEME', 98114, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2841, NULL, '2020-01-11 14:00:00+00', 'ENTRY_THEME', 6485, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2842, 2517, '2020-01-11 14:00:00+00', 'DELETE_THEME', 78044, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2843, NULL, '2020-01-11 14:00:00+00', 'DELETE_THEME', 92972, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2844, 38344, '2020-01-11 14:00:00+00', 'DELETE_THEME', 75608, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2845, NULL, '2020-01-11 14:00:00+00', 'DELETE_THEME', 58289, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2846, 62988, '2020-01-11 14:00:00+00', 'DELETE_THEME', 79130, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2847, NULL, '2020-01-11 14:00:00+00', 'DELETE_THEME', 8891, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2848, 58714, '2020-01-11 14:00:00+00', 'DELETE_THEME', 53677, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2849, NULL, '2020-01-11 14:00:00+00', 'DELETE_THEME', 67626, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2850, 44885, '2020-01-11 14:00:00+00', 'DELETE_THEME', 63875, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2851, NULL, '2020-01-11 14:00:00+00', 'DELETE_THEME', 8054, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2852, 16209, '2020-01-11 14:00:00+00', 'DELETE_THEME', 29677, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2853, NULL, '2020-01-11 14:00:00+00', 'DELETE_THEME', 32321, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2854, 39818, '2020-01-11 14:00:00+00', 'WRITE_MESSAGE', 27031, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2855, NULL, '2020-01-11 14:00:00+00', 'WRITE_MESSAGE', 3811, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2856, 70662, '2020-01-11 14:00:00+00', 'WRITE_MESSAGE', 18632, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2857, NULL, '2020-01-11 14:00:00+00', 'WRITE_MESSAGE', 92025, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2858, 65948, '2020-01-11 14:00:00+00', 'WRITE_MESSAGE', 50041, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2859, NULL, '2020-01-12 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2860, 35501, '2020-01-12 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2861, NULL, '2020-01-12 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2862, 17802, '2020-01-12 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2863, NULL, '2020-01-12 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2864, 37628, '2020-01-12 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2865, NULL, '2020-01-12 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2866, 68646, '2020-01-12 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2867, NULL, '2020-01-12 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2868, 42327, '2020-01-12 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2869, NULL, '2020-01-12 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2870, 83861, '2020-01-12 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2871, NULL, '2020-01-12 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2872, 7076, '2020-01-12 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2873, NULL, '2020-01-12 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2874, 60536, '2020-01-12 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2875, NULL, '2020-01-12 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2876, 836, '2020-01-12 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2877, NULL, '2020-01-12 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2878, 70814, '2020-01-12 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2879, NULL, '2020-01-12 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2880, 27009, '2020-01-12 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2881, NULL, '2020-01-12 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2882, 3598, '2020-01-12 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2883, NULL, '2020-01-12 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2884, 46112, '2020-01-12 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2885, NULL, '2020-01-12 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2886, 72608, '2020-01-12 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2887, NULL, '2020-01-12 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2888, 17151, '2020-01-12 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2889, NULL, '2020-01-12 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2890, 15621, '2020-01-12 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2891, NULL, '2020-01-12 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2892, 55224, '2020-01-12 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2893, NULL, '2020-01-12 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2894, 4738, '2020-01-12 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2895, NULL, '2020-01-12 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2896, 30451, '2020-01-12 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2897, NULL, '2020-01-12 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2898, 33412, '2020-01-12 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2899, NULL, '2020-01-12 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2900, 88821, '2020-01-12 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2901, NULL, '2020-01-12 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2902, 4182, '2020-01-12 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2903, NULL, '2020-01-12 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2904, 10675, '2020-01-12 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2905, NULL, '2020-01-12 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2906, 8580, '2020-01-12 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2907, NULL, '2020-01-12 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2908, 21650, '2020-01-12 14:00:00+00', 'ENTRY_THEME', 42425, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2909, NULL, '2020-01-12 14:00:00+00', 'ENTRY_THEME', 37579, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2910, 41453, '2020-01-12 14:00:00+00', 'ENTRY_THEME', 58702, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2911, NULL, '2020-01-12 14:00:00+00', 'ENTRY_THEME', 10593, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2912, 33633, '2020-01-12 14:00:00+00', 'ENTRY_THEME', 68560, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2913, NULL, '2020-01-12 14:00:00+00', 'ENTRY_THEME', 18563, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2914, 30637, '2020-01-12 14:00:00+00', 'ENTRY_THEME', 96646, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2915, NULL, '2020-01-12 14:00:00+00', 'ENTRY_THEME', 70997, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2916, 34169, '2020-01-12 14:00:00+00', 'ENTRY_THEME', 16879, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2917, NULL, '2020-01-12 14:00:00+00', 'ENTRY_THEME', 45614, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2918, 75853, '2020-01-12 14:00:00+00', 'ENTRY_THEME', 42021, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2919, NULL, '2020-01-12 14:00:00+00', 'ENTRY_THEME', 54549, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2920, 39144, '2020-01-12 14:00:00+00', 'ENTRY_THEME', 28700, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2921, NULL, '2020-01-12 14:00:00+00', 'ENTRY_THEME', 41581, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2922, 80985, '2020-01-12 14:00:00+00', 'ENTRY_THEME', 42506, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2923, NULL, '2020-01-12 14:00:00+00', 'DELETE_THEME', 6726, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2924, 65704, '2020-01-12 14:00:00+00', 'DELETE_THEME', 5827, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2925, NULL, '2020-01-12 14:00:00+00', 'DELETE_THEME', 36216, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2926, 65215, '2020-01-12 14:00:00+00', 'DELETE_THEME', 35341, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2927, NULL, '2020-01-12 14:00:00+00', 'DELETE_THEME', 79169, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2928, 26692, '2020-01-12 14:00:00+00', 'DELETE_THEME', 27309, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2929, NULL, '2020-01-12 14:00:00+00', 'DELETE_THEME', 15229, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2930, 33584, '2020-01-12 14:00:00+00', 'DELETE_THEME', 27855, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2931, NULL, '2020-01-12 14:00:00+00', 'DELETE_THEME', 92556, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2932, 33303, '2020-01-12 14:00:00+00', 'WRITE_MESSAGE', 81402, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2933, NULL, '2020-01-12 14:00:00+00', 'WRITE_MESSAGE', 59106, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2934, 42983, '2020-01-12 14:00:00+00', 'WRITE_MESSAGE', 17527, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2935, NULL, '2020-01-12 14:00:00+00', 'WRITE_MESSAGE', 27973, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2936, 35571, '2020-01-12 14:00:00+00', 'WRITE_MESSAGE', 87728, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2937, NULL, '2020-01-12 14:00:00+00', 'WRITE_MESSAGE', 16740, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2938, 13038, '2020-01-12 14:00:00+00', 'WRITE_MESSAGE', 24073, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2939, NULL, '2020-01-12 14:00:00+00', 'WRITE_MESSAGE', 63112, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2940, 7167, '2020-01-12 14:00:00+00', 'WRITE_MESSAGE', 13296, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2941, NULL, '2020-01-12 14:00:00+00', 'WRITE_MESSAGE', 90877, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2942, 27640, '2020-01-13 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2943, NULL, '2020-01-13 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2944, 28798, '2020-01-13 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2945, NULL, '2020-01-13 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2946, 68149, '2020-01-13 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2947, NULL, '2020-01-13 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2948, 89641, '2020-01-13 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2949, NULL, '2020-01-13 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2950, 18058, '2020-01-13 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2951, NULL, '2020-01-13 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2952, 71890, '2020-01-13 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2953, NULL, '2020-01-13 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2954, 96969, '2020-01-13 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2955, NULL, '2020-01-13 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2956, 65194, '2020-01-13 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2957, NULL, '2020-01-13 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2958, 46938, '2020-01-13 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2959, NULL, '2020-01-13 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2960, 98441, '2020-01-13 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2961, NULL, '2020-01-13 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2962, 871, '2020-01-13 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2963, NULL, '2020-01-13 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2964, 19478, '2020-01-13 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2965, NULL, '2020-01-13 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2966, 97209, '2020-01-13 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2967, NULL, '2020-01-13 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2968, 62744, '2020-01-13 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2969, NULL, '2020-01-13 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2970, 9998, '2020-01-13 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2971, NULL, '2020-01-13 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2972, 65931, '2020-01-13 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2973, NULL, '2020-01-13 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2974, 28294, '2020-01-13 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2975, NULL, '2020-01-13 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2976, 31050, '2020-01-13 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2977, NULL, '2020-01-13 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2978, 84869, '2020-01-13 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2979, NULL, '2020-01-13 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2980, 29538, '2020-01-13 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2981, NULL, '2020-01-13 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2982, 34531, '2020-01-13 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2983, NULL, '2020-01-13 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2984, 84632, '2020-01-13 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2985, NULL, '2020-01-13 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2986, 81723, '2020-01-13 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2987, NULL, '2020-01-13 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2988, 71564, '2020-01-13 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2989, NULL, '2020-01-13 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2990, 46790, '2020-01-13 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2991, NULL, '2020-01-13 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2992, 9784, '2020-01-13 14:00:00+00', 'ENTRY_THEME', 74738, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2993, NULL, '2020-01-13 14:00:00+00', 'ENTRY_THEME', 8333, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2994, 31972, '2020-01-13 14:00:00+00', 'ENTRY_THEME', 42383, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2995, NULL, '2020-01-13 14:00:00+00', 'ENTRY_THEME', 9824, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2996, 68421, '2020-01-13 14:00:00+00', 'ENTRY_THEME', 69056, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2997, NULL, '2020-01-13 14:00:00+00', 'ENTRY_THEME', 40741, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2998, 10669, '2020-01-13 14:00:00+00', 'ENTRY_THEME', 6663, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (2999, NULL, '2020-01-13 14:00:00+00', 'ENTRY_THEME', 25141, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3000, 2088, '2020-01-13 14:00:00+00', 'ENTRY_THEME', 67839, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3001, NULL, '2020-01-13 14:00:00+00', 'ENTRY_THEME', 95938, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3002, 39215, '2020-01-13 14:00:00+00', 'ENTRY_THEME', 3788, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3003, NULL, '2020-01-13 14:00:00+00', 'ENTRY_THEME', 94201, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3004, 2731, '2020-01-13 14:00:00+00', 'ENTRY_THEME', 26726, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3005, NULL, '2020-01-13 14:00:00+00', 'DELETE_THEME', 84263, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3006, 53290, '2020-01-13 14:00:00+00', 'DELETE_THEME', 29409, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3007, NULL, '2020-01-13 14:00:00+00', 'DELETE_THEME', 49132, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3008, 43976, '2020-01-13 14:00:00+00', 'DELETE_THEME', 4615, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3009, NULL, '2020-01-13 14:00:00+00', 'DELETE_THEME', 85200, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3010, 14588, '2020-01-13 14:00:00+00', 'DELETE_THEME', 91586, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3011, NULL, '2020-01-13 14:00:00+00', 'DELETE_THEME', 34863, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3012, 28553, '2020-01-13 14:00:00+00', 'DELETE_THEME', 64730, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3013, NULL, '2020-01-13 14:00:00+00', 'DELETE_THEME', 9204, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3014, 94656, '2020-01-13 14:00:00+00', 'DELETE_THEME', 52502, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3015, NULL, '2020-01-13 14:00:00+00', 'DELETE_THEME', 85097, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3016, 82174, '2020-01-13 14:00:00+00', 'DELETE_THEME', 91016, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3017, NULL, '2020-01-13 14:00:00+00', 'DELETE_THEME', 95257, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3018, 825, '2020-01-13 14:00:00+00', 'WRITE_MESSAGE', 37542, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3019, NULL, '2020-01-13 14:00:00+00', 'WRITE_MESSAGE', 64913, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3020, 53073, '2020-01-13 14:00:00+00', 'WRITE_MESSAGE', 46713, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3021, NULL, '2020-01-13 14:00:00+00', 'WRITE_MESSAGE', 51503, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3022, 22869, '2020-01-13 14:00:00+00', 'WRITE_MESSAGE', 66626, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3023, NULL, '2020-01-13 14:00:00+00', 'WRITE_MESSAGE', 74366, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3024, 67241, '2020-01-13 14:00:00+00', 'WRITE_MESSAGE', 62561, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3025, NULL, '2020-01-13 14:00:00+00', 'WRITE_MESSAGE', 3718, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3026, 48540, '2020-01-13 14:00:00+00', 'WRITE_MESSAGE', 80534, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3027, NULL, '2020-01-14 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3028, 37498, '2020-01-14 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3029, NULL, '2020-01-14 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3030, 14583, '2020-01-14 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3031, NULL, '2020-01-14 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3032, 72358, '2020-01-14 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3033, NULL, '2020-01-14 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3034, 82008, '2020-01-14 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3035, NULL, '2020-01-14 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3036, 72024, '2020-01-14 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3037, NULL, '2020-01-14 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3038, 13645, '2020-01-14 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3039, NULL, '2020-01-14 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3040, 68906, '2020-01-14 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3041, NULL, '2020-01-14 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3042, 86724, '2020-01-14 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3043, NULL, '2020-01-14 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3044, 13912, '2020-01-14 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3045, NULL, '2020-01-14 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3046, 95173, '2020-01-14 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3047, NULL, '2020-01-14 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3048, 49856, '2020-01-14 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3049, NULL, '2020-01-14 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3050, 28695, '2020-01-14 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3051, NULL, '2020-01-14 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3052, 97508, '2020-01-14 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3053, NULL, '2020-01-14 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3054, 82638, '2020-01-14 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3055, NULL, '2020-01-14 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3056, 33285, '2020-01-14 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3057, NULL, '2020-01-14 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3058, 4448, '2020-01-14 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3059, NULL, '2020-01-14 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3060, 8937, '2020-01-14 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3061, NULL, '2020-01-14 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3062, 80135, '2020-01-14 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3063, NULL, '2020-01-14 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3064, 14866, '2020-01-14 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3065, NULL, '2020-01-14 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3066, 46287, '2020-01-14 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3067, NULL, '2020-01-14 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3068, 78663, '2020-01-14 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3069, NULL, '2020-01-14 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3070, 92244, '2020-01-14 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3071, NULL, '2020-01-14 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3072, 3233, '2020-01-14 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3073, NULL, '2020-01-14 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3074, 84791, '2020-01-14 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3075, NULL, '2020-01-14 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3076, 12971, '2020-01-14 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3077, NULL, '2020-01-14 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3078, 62845, '2020-01-14 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3079, NULL, '2020-01-14 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3080, 12756, '2020-01-14 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3081, NULL, '2020-01-14 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3082, 83079, '2020-01-14 14:00:00+00', 'ENTRY_THEME', 36144, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3083, NULL, '2020-01-14 14:00:00+00', 'ENTRY_THEME', 82860, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3084, 52108, '2020-01-14 14:00:00+00', 'ENTRY_THEME', 48869, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3085, NULL, '2020-01-14 14:00:00+00', 'ENTRY_THEME', 65144, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3086, 16328, '2020-01-14 14:00:00+00', 'ENTRY_THEME', 40152, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3087, NULL, '2020-01-14 14:00:00+00', 'DELETE_THEME', 27901, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3088, 25058, '2020-01-14 14:00:00+00', 'DELETE_THEME', 9605, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3089, NULL, '2020-01-14 14:00:00+00', 'DELETE_THEME', 65448, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3090, 75823, '2020-01-14 14:00:00+00', 'DELETE_THEME', 58142, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3091, NULL, '2020-01-14 14:00:00+00', 'DELETE_THEME', 52274, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3092, 85318, '2020-01-14 14:00:00+00', 'DELETE_THEME', 7256, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3093, NULL, '2020-01-14 14:00:00+00', 'DELETE_THEME', 408, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3094, 51517, '2020-01-14 14:00:00+00', 'DELETE_THEME', 1867, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3095, NULL, '2020-01-14 14:00:00+00', 'DELETE_THEME', 36858, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3096, 29906, '2020-01-14 14:00:00+00', 'DELETE_THEME', 64309, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3097, NULL, '2020-01-14 14:00:00+00', 'DELETE_THEME', 5337, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3098, 82927, '2020-01-14 14:00:00+00', 'DELETE_THEME', 84049, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3099, NULL, '2020-01-14 14:00:00+00', 'WRITE_MESSAGE', 7237, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3100, 38668, '2020-01-14 14:00:00+00', 'WRITE_MESSAGE', 90251, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3101, NULL, '2020-01-14 14:00:00+00', 'WRITE_MESSAGE', 17556, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3102, 52640, '2020-01-14 14:00:00+00', 'WRITE_MESSAGE', 57367, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3103, NULL, '2020-01-14 14:00:00+00', 'WRITE_MESSAGE', 97888, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3104, 72712, '2020-01-14 14:00:00+00', 'WRITE_MESSAGE', 36091, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3105, NULL, '2020-01-14 14:00:00+00', 'WRITE_MESSAGE', 21089, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3106, 29360, '2020-01-14 14:00:00+00', 'WRITE_MESSAGE', 41109, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3107, NULL, '2020-01-15 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3108, 40359, '2020-01-15 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3109, NULL, '2020-01-15 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3110, 45686, '2020-01-15 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3111, NULL, '2020-01-15 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3112, 22810, '2020-01-15 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3113, NULL, '2020-01-15 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3114, 68286, '2020-01-15 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3115, NULL, '2020-01-15 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3116, 15817, '2020-01-15 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3117, NULL, '2020-01-15 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3118, 2162, '2020-01-15 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3119, NULL, '2020-01-15 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3120, 13137, '2020-01-15 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3121, NULL, '2020-01-15 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3122, 91426, '2020-01-15 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3123, NULL, '2020-01-15 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3124, 12226, '2020-01-15 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3125, NULL, '2020-01-15 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3126, 29980, '2020-01-15 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3127, NULL, '2020-01-15 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3128, 34315, '2020-01-15 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3129, NULL, '2020-01-15 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3130, 85290, '2020-01-15 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3131, NULL, '2020-01-15 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3132, 94470, '2020-01-15 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3133, NULL, '2020-01-15 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3134, 49722, '2020-01-15 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3135, NULL, '2020-01-15 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3136, 9610, '2020-01-15 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3137, NULL, '2020-01-15 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3138, 66759, '2020-01-15 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3139, NULL, '2020-01-15 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3140, 14090, '2020-01-15 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3141, NULL, '2020-01-15 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3142, 25045, '2020-01-15 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3143, NULL, '2020-01-15 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3144, 87119, '2020-01-15 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3145, NULL, '2020-01-15 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3146, 73545, '2020-01-15 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3147, NULL, '2020-01-15 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3148, 64478, '2020-01-15 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3149, NULL, '2020-01-15 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3150, 59459, '2020-01-15 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3151, NULL, '2020-01-15 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3152, 98172, '2020-01-15 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3153, NULL, '2020-01-15 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3154, 2615, '2020-01-15 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3155, NULL, '2020-01-15 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3156, 30995, '2020-01-15 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3157, NULL, '2020-01-15 14:00:00+00', 'ENTRY_THEME', 46492, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3158, 25285, '2020-01-15 14:00:00+00', 'ENTRY_THEME', 75844, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3159, NULL, '2020-01-15 14:00:00+00', 'ENTRY_THEME', 39426, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3160, 7733, '2020-01-15 14:00:00+00', 'ENTRY_THEME', 80774, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3161, NULL, '2020-01-15 14:00:00+00', 'ENTRY_THEME', 83920, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3162, 84764, '2020-01-15 14:00:00+00', 'ENTRY_THEME', 67182, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3163, NULL, '2020-01-15 14:00:00+00', 'ENTRY_THEME', 96749, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3164, 99463, '2020-01-15 14:00:00+00', 'ENTRY_THEME', 58167, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3165, NULL, '2020-01-15 14:00:00+00', 'ENTRY_THEME', 90944, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3166, 11209, '2020-01-15 14:00:00+00', 'ENTRY_THEME', 89675, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3167, NULL, '2020-01-15 14:00:00+00', 'ENTRY_THEME', 64117, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3168, 32233, '2020-01-15 14:00:00+00', 'ENTRY_THEME', 13176, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3169, NULL, '2020-01-15 14:00:00+00', 'DELETE_THEME', 45657, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3170, 66700, '2020-01-15 14:00:00+00', 'DELETE_THEME', 51872, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3171, NULL, '2020-01-15 14:00:00+00', 'DELETE_THEME', 15658, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3172, 47065, '2020-01-15 14:00:00+00', 'DELETE_THEME', 92960, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3173, NULL, '2020-01-15 14:00:00+00', 'DELETE_THEME', 99471, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3174, 6259, '2020-01-15 14:00:00+00', 'WRITE_MESSAGE', 47139, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3175, NULL, '2020-01-15 14:00:00+00', 'WRITE_MESSAGE', 23414, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3176, 76643, '2020-01-15 14:00:00+00', 'WRITE_MESSAGE', 2929, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3177, NULL, '2020-01-15 14:00:00+00', 'WRITE_MESSAGE', 12261, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3178, 99748, '2020-01-15 14:00:00+00', 'WRITE_MESSAGE', 53789, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3179, NULL, '2020-01-15 14:00:00+00', 'WRITE_MESSAGE', 27705, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3180, 1423, '2020-01-16 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3181, NULL, '2020-01-16 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3182, 91260, '2020-01-16 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3183, NULL, '2020-01-16 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3184, 92924, '2020-01-16 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3185, NULL, '2020-01-16 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3186, 90068, '2020-01-16 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3187, NULL, '2020-01-16 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3188, 42671, '2020-01-16 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3189, NULL, '2020-01-16 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3190, 82957, '2020-01-16 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3191, NULL, '2020-01-16 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3192, 37946, '2020-01-16 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3193, NULL, '2020-01-16 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3194, 82680, '2020-01-16 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3195, NULL, '2020-01-16 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3196, 53258, '2020-01-16 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3197, NULL, '2020-01-16 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3198, 60944, '2020-01-16 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3199, NULL, '2020-01-16 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3200, 10363, '2020-01-16 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3201, NULL, '2020-01-16 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3202, 77134, '2020-01-16 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3203, NULL, '2020-01-16 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3204, 82047, '2020-01-16 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3205, NULL, '2020-01-16 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3206, 30561, '2020-01-16 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3207, NULL, '2020-01-16 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3208, 51398, '2020-01-16 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3209, NULL, '2020-01-16 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3210, 75122, '2020-01-16 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3211, NULL, '2020-01-16 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3212, 90533, '2020-01-16 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3213, NULL, '2020-01-16 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3214, 32137, '2020-01-16 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3215, NULL, '2020-01-16 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3216, 6775, '2020-01-16 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3217, NULL, '2020-01-16 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3218, 94598, '2020-01-16 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3219, NULL, '2020-01-16 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3220, 2962, '2020-01-16 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3221, NULL, '2020-01-16 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3222, 81999, '2020-01-16 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3223, NULL, '2020-01-16 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3224, 32869, '2020-01-16 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3225, NULL, '2020-01-16 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3226, 99992, '2020-01-16 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3227, NULL, '2020-01-16 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3228, 56664, '2020-01-16 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3229, NULL, '2020-01-16 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3230, 95624, '2020-01-16 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3231, NULL, '2020-01-16 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3232, 6814, '2020-01-16 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3233, NULL, '2020-01-16 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3234, 11961, '2020-01-16 14:00:00+00', 'ENTRY_THEME', 95107, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3235, NULL, '2020-01-16 14:00:00+00', 'ENTRY_THEME', 2803, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3236, 20561, '2020-01-16 14:00:00+00', 'ENTRY_THEME', 58080, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3237, NULL, '2020-01-16 14:00:00+00', 'ENTRY_THEME', 29853, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3238, 4944, '2020-01-16 14:00:00+00', 'ENTRY_THEME', 72458, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3239, NULL, '2020-01-16 14:00:00+00', 'ENTRY_THEME', 95239, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3240, 94925, '2020-01-16 14:00:00+00', 'ENTRY_THEME', 17326, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3241, NULL, '2020-01-16 14:00:00+00', 'ENTRY_THEME', 3806, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3242, 4854, '2020-01-16 14:00:00+00', 'ENTRY_THEME', 47294, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3243, NULL, '2020-01-16 14:00:00+00', 'ENTRY_THEME', 71741, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3244, 2751, '2020-01-16 14:00:00+00', 'ENTRY_THEME', 51424, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3245, NULL, '2020-01-16 14:00:00+00', 'ENTRY_THEME', 53222, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3246, 76642, '2020-01-16 14:00:00+00', 'ENTRY_THEME', 94177, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3247, NULL, '2020-01-16 14:00:00+00', 'DELETE_THEME', 91606, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3248, 3512, '2020-01-16 14:00:00+00', 'DELETE_THEME', 54413, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3249, NULL, '2020-01-16 14:00:00+00', 'DELETE_THEME', 32788, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3250, 38662, '2020-01-16 14:00:00+00', 'DELETE_THEME', 61386, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3251, NULL, '2020-01-16 14:00:00+00', 'DELETE_THEME', 37208, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3252, 31711, '2020-01-16 14:00:00+00', 'DELETE_THEME', 33847, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3253, NULL, '2020-01-16 14:00:00+00', 'DELETE_THEME', 71196, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3254, 7301, '2020-01-16 14:00:00+00', 'DELETE_THEME', 18773, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3255, NULL, '2020-01-16 14:00:00+00', 'DELETE_THEME', 60851, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3256, 33073, '2020-01-16 14:00:00+00', 'DELETE_THEME', 87310, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3257, NULL, '2020-01-16 14:00:00+00', 'DELETE_THEME', 60007, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3258, 62930, '2020-01-16 14:00:00+00', 'WRITE_MESSAGE', 61694, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3259, NULL, '2020-01-16 14:00:00+00', 'WRITE_MESSAGE', 14004, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3260, 32009, '2020-01-16 14:00:00+00', 'WRITE_MESSAGE', 2272, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3261, NULL, '2020-01-16 14:00:00+00', 'WRITE_MESSAGE', 45917, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3262, 47638, '2020-01-16 14:00:00+00', 'WRITE_MESSAGE', 73195, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3263, NULL, '2020-01-16 14:00:00+00', 'WRITE_MESSAGE', 1079, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3264, 87314, '2020-01-16 14:00:00+00', 'WRITE_MESSAGE', 69422, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3265, NULL, '2020-01-17 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3266, 38124, '2020-01-17 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3267, NULL, '2020-01-17 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3268, 63651, '2020-01-17 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3269, NULL, '2020-01-17 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3270, 72900, '2020-01-17 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3271, NULL, '2020-01-17 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3272, 14127, '2020-01-17 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3273, NULL, '2020-01-17 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3274, 62850, '2020-01-17 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3275, NULL, '2020-01-17 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3276, 26553, '2020-01-17 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3277, NULL, '2020-01-17 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3278, 92115, '2020-01-17 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3279, NULL, '2020-01-17 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3280, 59136, '2020-01-17 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3281, NULL, '2020-01-17 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3282, 47999, '2020-01-17 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3283, NULL, '2020-01-17 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3284, 77419, '2020-01-17 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3285, NULL, '2020-01-17 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3286, 40069, '2020-01-17 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3287, NULL, '2020-01-17 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3288, 95863, '2020-01-17 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3289, NULL, '2020-01-17 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3290, 46664, '2020-01-17 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3291, NULL, '2020-01-17 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3292, 25131, '2020-01-17 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3293, NULL, '2020-01-17 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3294, 73127, '2020-01-17 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3295, NULL, '2020-01-17 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3296, 88030, '2020-01-17 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3297, NULL, '2020-01-17 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3298, 54798, '2020-01-17 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3299, NULL, '2020-01-17 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3300, 63321, '2020-01-17 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3301, NULL, '2020-01-17 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3302, 26881, '2020-01-17 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3303, NULL, '2020-01-17 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3304, 27866, '2020-01-17 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3305, NULL, '2020-01-17 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3306, 52411, '2020-01-17 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3307, NULL, '2020-01-17 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3308, 97425, '2020-01-17 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3309, NULL, '2020-01-17 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3310, 79814, '2020-01-17 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3311, NULL, '2020-01-17 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3312, 29611, '2020-01-17 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3313, NULL, '2020-01-17 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3314, 28501, '2020-01-17 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3315, NULL, '2020-01-17 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3316, 78454, '2020-01-17 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3317, NULL, '2020-01-17 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3318, 57154, '2020-01-17 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3319, NULL, '2020-01-17 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3320, 24661, '2020-01-17 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3321, NULL, '2020-01-17 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3322, 66745, '2020-01-17 14:00:00+00', 'ENTRY_THEME', 37270, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3323, NULL, '2020-01-17 14:00:00+00', 'ENTRY_THEME', 72288, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3324, 3474, '2020-01-17 14:00:00+00', 'ENTRY_THEME', 78799, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3325, NULL, '2020-01-17 14:00:00+00', 'ENTRY_THEME', 32012, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3326, 81689, '2020-01-17 14:00:00+00', 'ENTRY_THEME', 4457, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3327, NULL, '2020-01-17 14:00:00+00', 'ENTRY_THEME', 68336, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3328, 46223, '2020-01-17 14:00:00+00', 'DELETE_THEME', 62454, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3329, NULL, '2020-01-17 14:00:00+00', 'DELETE_THEME', 94950, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3330, 99689, '2020-01-17 14:00:00+00', 'DELETE_THEME', 92675, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3331, NULL, '2020-01-17 14:00:00+00', 'DELETE_THEME', 69653, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3332, 90002, '2020-01-17 14:00:00+00', 'DELETE_THEME', 62629, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3333, NULL, '2020-01-17 14:00:00+00', 'DELETE_THEME', 66666, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3334, 81843, '2020-01-17 14:00:00+00', 'DELETE_THEME', 43392, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3335, NULL, '2020-01-17 14:00:00+00', 'DELETE_THEME', 59094, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3336, 9848, '2020-01-17 14:00:00+00', 'DELETE_THEME', 2674, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3337, NULL, '2020-01-17 14:00:00+00', 'DELETE_THEME', 20039, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3338, 96873, '2020-01-17 14:00:00+00', 'DELETE_THEME', 40777, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3339, NULL, '2020-01-17 14:00:00+00', 'WRITE_MESSAGE', 31121, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3340, 31079, '2020-01-17 14:00:00+00', 'WRITE_MESSAGE', 78113, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3341, NULL, '2020-01-17 14:00:00+00', 'WRITE_MESSAGE', 62933, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3342, 13871, '2020-01-17 14:00:00+00', 'WRITE_MESSAGE', 81373, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3343, NULL, '2020-01-17 14:00:00+00', 'WRITE_MESSAGE', 24391, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3344, 6965, '2020-01-18 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3345, NULL, '2020-01-18 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3346, 42519, '2020-01-18 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3347, NULL, '2020-01-18 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3348, 247, '2020-01-18 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3349, NULL, '2020-01-18 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3350, 32828, '2020-01-18 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3351, NULL, '2020-01-18 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3352, 76310, '2020-01-18 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3353, NULL, '2020-01-18 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3354, 80450, '2020-01-18 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3355, NULL, '2020-01-18 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3356, 91259, '2020-01-18 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3357, NULL, '2020-01-18 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3358, 72395, '2020-01-18 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3359, NULL, '2020-01-18 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3360, 76229, '2020-01-18 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3361, NULL, '2020-01-18 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3362, 16211, '2020-01-18 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3363, NULL, '2020-01-18 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3364, 46358, '2020-01-18 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3365, NULL, '2020-01-18 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3366, 61032, '2020-01-18 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3367, NULL, '2020-01-18 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3368, 41265, '2020-01-18 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3369, NULL, '2020-01-18 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3370, 76810, '2020-01-18 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3371, NULL, '2020-01-18 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3372, 22138, '2020-01-18 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3373, NULL, '2020-01-18 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3374, 40135, '2020-01-18 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3375, NULL, '2020-01-18 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3376, 8454, '2020-01-18 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3377, NULL, '2020-01-18 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3378, 25665, '2020-01-18 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3379, NULL, '2020-01-18 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3380, 89564, '2020-01-18 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3381, NULL, '2020-01-18 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3382, 90010, '2020-01-18 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3383, NULL, '2020-01-18 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3384, 75728, '2020-01-18 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3385, NULL, '2020-01-18 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3386, 74988, '2020-01-18 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3387, NULL, '2020-01-18 14:00:00+00', 'ENTRY_THEME', 29416, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3388, 75236, '2020-01-18 14:00:00+00', 'ENTRY_THEME', 20317, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3389, NULL, '2020-01-18 14:00:00+00', 'ENTRY_THEME', 79585, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3390, 67618, '2020-01-18 14:00:00+00', 'ENTRY_THEME', 51145, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3391, NULL, '2020-01-18 14:00:00+00', 'ENTRY_THEME', 41108, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3392, 149, '2020-01-18 14:00:00+00', 'ENTRY_THEME', 28797, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3393, NULL, '2020-01-18 14:00:00+00', 'ENTRY_THEME', 33238, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3394, 77218, '2020-01-18 14:00:00+00', 'ENTRY_THEME', 88984, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3395, NULL, '2020-01-18 14:00:00+00', 'ENTRY_THEME', 901, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3396, 7674, '2020-01-18 14:00:00+00', 'ENTRY_THEME', 13092, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3397, NULL, '2020-01-18 14:00:00+00', 'ENTRY_THEME', 16069, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3398, 23115, '2020-01-18 14:00:00+00', 'ENTRY_THEME', 99095, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3399, NULL, '2020-01-18 14:00:00+00', 'ENTRY_THEME', 26299, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3400, 19572, '2020-01-18 14:00:00+00', 'DELETE_THEME', 44450, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3401, NULL, '2020-01-18 14:00:00+00', 'DELETE_THEME', 15278, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3402, 37176, '2020-01-18 14:00:00+00', 'DELETE_THEME', 99129, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3403, NULL, '2020-01-18 14:00:00+00', 'DELETE_THEME', 10479, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3404, 49843, '2020-01-18 14:00:00+00', 'DELETE_THEME', 31373, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3405, NULL, '2020-01-18 14:00:00+00', 'DELETE_THEME', 27751, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3406, 38601, '2020-01-18 14:00:00+00', 'DELETE_THEME', 83127, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3407, NULL, '2020-01-18 14:00:00+00', 'WRITE_MESSAGE', 16011, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3408, 7797, '2020-01-18 14:00:00+00', 'WRITE_MESSAGE', 73549, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3409, NULL, '2020-01-18 14:00:00+00', 'WRITE_MESSAGE', 55798, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3410, 41286, '2020-01-18 14:00:00+00', 'WRITE_MESSAGE', 18319, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3411, NULL, '2020-01-18 14:00:00+00', 'WRITE_MESSAGE', 78116, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3412, 48381, '2020-01-18 14:00:00+00', 'WRITE_MESSAGE', 80125, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3413, NULL, '2020-01-18 14:00:00+00', 'WRITE_MESSAGE', 85274, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3414, 97373, '2020-01-18 14:00:00+00', 'WRITE_MESSAGE', 17600, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3415, NULL, '2020-01-18 14:00:00+00', 'WRITE_MESSAGE', 45413, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3416, 46293, '2020-01-18 14:00:00+00', 'WRITE_MESSAGE', 49159, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3417, NULL, '2020-01-18 14:00:00+00', 'WRITE_MESSAGE', 51549, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3418, 83748, '2020-01-18 14:00:00+00', 'WRITE_MESSAGE', 85289, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3419, NULL, '2020-01-18 14:00:00+00', 'WRITE_MESSAGE', 23732, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3420, 98753, '2020-01-18 14:00:00+00', 'WRITE_MESSAGE', 87288, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3421, NULL, '2020-01-18 14:00:00+00', 'WRITE_MESSAGE', 98372, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3422, 78219, '2020-01-19 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3423, NULL, '2020-01-19 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3424, 50723, '2020-01-19 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3425, NULL, '2020-01-19 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3426, 4566, '2020-01-19 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3427, NULL, '2020-01-19 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3428, 88402, '2020-01-19 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3429, NULL, '2020-01-19 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3430, 89376, '2020-01-19 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3431, NULL, '2020-01-19 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3432, 96257, '2020-01-19 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3433, NULL, '2020-01-19 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3434, 96641, '2020-01-19 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3435, NULL, '2020-01-19 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3436, 88790, '2020-01-19 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3437, NULL, '2020-01-19 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3438, 39336, '2020-01-19 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3439, NULL, '2020-01-19 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3440, 80519, '2020-01-19 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3441, NULL, '2020-01-19 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3442, 28362, '2020-01-19 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3443, NULL, '2020-01-19 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3444, 66157, '2020-01-19 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3445, NULL, '2020-01-19 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3446, 32778, '2020-01-19 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3447, NULL, '2020-01-19 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3448, 65300, '2020-01-19 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3449, NULL, '2020-01-19 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3450, 16036, '2020-01-19 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3451, NULL, '2020-01-19 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3452, 50531, '2020-01-19 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3453, NULL, '2020-01-19 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3454, 39888, '2020-01-19 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3455, NULL, '2020-01-19 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3456, 12617, '2020-01-19 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3457, NULL, '2020-01-19 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3458, 1738, '2020-01-19 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3459, NULL, '2020-01-19 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3460, 84998, '2020-01-19 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3461, NULL, '2020-01-19 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3462, 48914, '2020-01-19 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3463, NULL, '2020-01-19 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3464, 73987, '2020-01-19 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3465, NULL, '2020-01-19 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3466, 8617, '2020-01-19 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3467, NULL, '2020-01-19 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3468, 9022, '2020-01-19 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3469, NULL, '2020-01-19 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3470, 41643, '2020-01-19 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3471, NULL, '2020-01-19 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3472, 36402, '2020-01-19 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3473, NULL, '2020-01-19 14:00:00+00', 'ENTRY_THEME', 64920, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3474, 90101, '2020-01-19 14:00:00+00', 'ENTRY_THEME', 2685, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3475, NULL, '2020-01-19 14:00:00+00', 'ENTRY_THEME', 17087, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3476, 1871, '2020-01-19 14:00:00+00', 'ENTRY_THEME', 20928, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3477, NULL, '2020-01-19 14:00:00+00', 'ENTRY_THEME', 64073, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3478, 521, '2020-01-19 14:00:00+00', 'ENTRY_THEME', 19430, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3479, NULL, '2020-01-19 14:00:00+00', 'ENTRY_THEME', 68905, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3480, 15359, '2020-01-19 14:00:00+00', 'DELETE_THEME', 8916, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3481, NULL, '2020-01-19 14:00:00+00', 'DELETE_THEME', 21286, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3482, 20700, '2020-01-19 14:00:00+00', 'DELETE_THEME', 48546, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3483, NULL, '2020-01-19 14:00:00+00', 'DELETE_THEME', 87091, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3484, 33220, '2020-01-19 14:00:00+00', 'DELETE_THEME', 11144, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3485, NULL, '2020-01-19 14:00:00+00', 'WRITE_MESSAGE', 15930, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3486, 57268, '2020-01-19 14:00:00+00', 'WRITE_MESSAGE', 10130, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3487, NULL, '2020-01-19 14:00:00+00', 'WRITE_MESSAGE', 13743, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3488, 3569, '2020-01-19 14:00:00+00', 'WRITE_MESSAGE', 24664, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3489, NULL, '2020-01-19 14:00:00+00', 'WRITE_MESSAGE', 61302, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3490, 90157, '2020-01-19 14:00:00+00', 'WRITE_MESSAGE', 91713, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3491, NULL, '2020-01-19 14:00:00+00', 'WRITE_MESSAGE', 64835, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3492, 58971, '2020-01-19 14:00:00+00', 'WRITE_MESSAGE', 80212, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3493, NULL, '2020-01-19 14:00:00+00', 'WRITE_MESSAGE', 83708, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3494, 90555, '2020-01-19 14:00:00+00', 'WRITE_MESSAGE', 26871, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3495, NULL, '2020-01-20 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3496, 57774, '2020-01-20 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3497, NULL, '2020-01-20 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3498, 75529, '2020-01-20 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3499, NULL, '2020-01-20 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3500, 80952, '2020-01-20 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3501, NULL, '2020-01-20 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3502, 1078, '2020-01-20 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3503, NULL, '2020-01-20 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3504, 98222, '2020-01-20 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3505, NULL, '2020-01-20 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3506, 71855, '2020-01-20 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3507, NULL, '2020-01-20 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3508, 54762, '2020-01-20 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3509, NULL, '2020-01-20 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3510, 63087, '2020-01-20 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3511, NULL, '2020-01-20 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3512, 20740, '2020-01-20 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3513, NULL, '2020-01-20 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3514, 58310, '2020-01-20 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3515, NULL, '2020-01-20 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3516, 47950, '2020-01-20 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3517, NULL, '2020-01-20 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3518, 99603, '2020-01-20 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3519, NULL, '2020-01-20 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3520, 38359, '2020-01-20 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3521, NULL, '2020-01-20 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3522, 27412, '2020-01-20 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3523, NULL, '2020-01-20 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3524, 91745, '2020-01-20 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3525, NULL, '2020-01-20 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3526, 10797, '2020-01-20 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3527, NULL, '2020-01-20 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3528, 16616, '2020-01-20 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3529, NULL, '2020-01-20 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3530, 1103, '2020-01-20 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3531, NULL, '2020-01-20 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3532, 50196, '2020-01-20 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3533, NULL, '2020-01-20 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3534, 46830, '2020-01-20 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3535, NULL, '2020-01-20 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3536, 31676, '2020-01-20 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3537, NULL, '2020-01-20 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3538, 37892, '2020-01-20 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3539, NULL, '2020-01-20 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3540, 58876, '2020-01-20 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3541, NULL, '2020-01-20 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3542, 30420, '2020-01-20 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3543, NULL, '2020-01-20 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3544, 4182, '2020-01-20 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3545, NULL, '2020-01-20 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3546, 71590, '2020-01-20 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3547, NULL, '2020-01-20 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3548, 43810, '2020-01-20 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3549, NULL, '2020-01-20 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3550, 55023, '2020-01-20 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3551, NULL, '2020-01-20 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3552, 34476, '2020-01-20 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3553, NULL, '2020-01-20 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3554, 20114, '2020-01-20 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3555, NULL, '2020-01-20 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3556, 99611, '2020-01-20 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3557, NULL, '2020-01-20 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3558, 66709, '2020-01-20 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3559, NULL, '2020-01-20 14:00:00+00', 'ENTRY_THEME', 83269, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3560, 23369, '2020-01-20 14:00:00+00', 'ENTRY_THEME', 18998, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3561, NULL, '2020-01-20 14:00:00+00', 'ENTRY_THEME', 99420, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3562, 56988, '2020-01-20 14:00:00+00', 'ENTRY_THEME', 26695, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3563, NULL, '2020-01-20 14:00:00+00', 'ENTRY_THEME', 24619, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3564, 78685, '2020-01-20 14:00:00+00', 'ENTRY_THEME', 4173, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3565, NULL, '2020-01-20 14:00:00+00', 'ENTRY_THEME', 89033, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3566, 3480, '2020-01-20 14:00:00+00', 'ENTRY_THEME', 12817, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3567, NULL, '2020-01-20 14:00:00+00', 'ENTRY_THEME', 87638, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3568, 14243, '2020-01-20 14:00:00+00', 'ENTRY_THEME', 16893, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3569, NULL, '2020-01-20 14:00:00+00', 'DELETE_THEME', 22800, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3570, 55710, '2020-01-20 14:00:00+00', 'DELETE_THEME', 4111, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3571, NULL, '2020-01-20 14:00:00+00', 'DELETE_THEME', 18551, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3572, 43848, '2020-01-20 14:00:00+00', 'DELETE_THEME', 1083, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3573, NULL, '2020-01-20 14:00:00+00', 'DELETE_THEME', 3501, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3574, 42587, '2020-01-20 14:00:00+00', 'DELETE_THEME', 93294, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3575, NULL, '2020-01-20 14:00:00+00', 'DELETE_THEME', 42397, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3576, 96664, '2020-01-20 14:00:00+00', 'DELETE_THEME', 15328, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3577, NULL, '2020-01-20 14:00:00+00', 'WRITE_MESSAGE', 85075, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3578, 41433, '2020-01-20 14:00:00+00', 'WRITE_MESSAGE', 76121, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3579, NULL, '2020-01-20 14:00:00+00', 'WRITE_MESSAGE', 69788, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3580, 40784, '2020-01-20 14:00:00+00', 'WRITE_MESSAGE', 200, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3581, NULL, '2020-01-20 14:00:00+00', 'WRITE_MESSAGE', 1979, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3582, 1917, '2020-01-20 14:00:00+00', 'WRITE_MESSAGE', 7674, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3583, NULL, '2020-01-20 14:00:00+00', 'WRITE_MESSAGE', 7477, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3584, 74009, '2020-01-20 14:00:00+00', 'WRITE_MESSAGE', 14486, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3585, NULL, '2020-01-20 14:00:00+00', 'WRITE_MESSAGE', 97106, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3586, 82913, '2020-01-20 14:00:00+00', 'WRITE_MESSAGE', 8448, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3587, NULL, '2020-01-20 14:00:00+00', 'WRITE_MESSAGE', 13082, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3588, 46396, '2020-01-20 14:00:00+00', 'WRITE_MESSAGE', 4334, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3589, NULL, '2020-01-20 14:00:00+00', 'WRITE_MESSAGE', 9883, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3590, 39925, '2020-01-21 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3591, NULL, '2020-01-21 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3592, 72985, '2020-01-21 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3593, NULL, '2020-01-21 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3594, 63459, '2020-01-21 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3595, NULL, '2020-01-21 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3596, 73460, '2020-01-21 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3597, NULL, '2020-01-21 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3598, 34639, '2020-01-21 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3599, NULL, '2020-01-21 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3600, 36480, '2020-01-21 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3601, NULL, '2020-01-21 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3602, 4268, '2020-01-21 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3603, NULL, '2020-01-21 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3604, 16165, '2020-01-21 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3605, NULL, '2020-01-21 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3606, 98175, '2020-01-21 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3607, NULL, '2020-01-21 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3608, 64758, '2020-01-21 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3609, NULL, '2020-01-21 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3610, 80955, '2020-01-21 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3611, NULL, '2020-01-21 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3612, 55922, '2020-01-21 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3613, NULL, '2020-01-21 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3614, 73452, '2020-01-21 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3615, NULL, '2020-01-21 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3616, 89687, '2020-01-21 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3617, NULL, '2020-01-21 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3618, 85222, '2020-01-21 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3619, NULL, '2020-01-21 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3620, 97499, '2020-01-21 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3621, NULL, '2020-01-21 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3622, 5158, '2020-01-21 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3623, NULL, '2020-01-21 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3624, 6999, '2020-01-21 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3625, NULL, '2020-01-21 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3626, 17190, '2020-01-21 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3627, NULL, '2020-01-21 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3628, 91847, '2020-01-21 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3629, NULL, '2020-01-21 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3630, 95400, '2020-01-21 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3631, NULL, '2020-01-21 14:00:00+00', 'ENTRY_THEME', 7634, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3632, 80464, '2020-01-21 14:00:00+00', 'ENTRY_THEME', 14773, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3633, NULL, '2020-01-21 14:00:00+00', 'ENTRY_THEME', 34008, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3634, 42697, '2020-01-21 14:00:00+00', 'ENTRY_THEME', 50094, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3635, NULL, '2020-01-21 14:00:00+00', 'ENTRY_THEME', 93853, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3636, 6742, '2020-01-21 14:00:00+00', 'ENTRY_THEME', 80861, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3637, NULL, '2020-01-21 14:00:00+00', 'ENTRY_THEME', 37386, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3638, 48405, '2020-01-21 14:00:00+00', 'ENTRY_THEME', 52188, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3639, NULL, '2020-01-21 14:00:00+00', 'ENTRY_THEME', 99730, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3640, 60014, '2020-01-21 14:00:00+00', 'ENTRY_THEME', 43820, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3641, NULL, '2020-01-21 14:00:00+00', 'ENTRY_THEME', 94407, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3642, 50936, '2020-01-21 14:00:00+00', 'DELETE_THEME', 28057, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3643, NULL, '2020-01-21 14:00:00+00', 'DELETE_THEME', 4880, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3644, 74780, '2020-01-21 14:00:00+00', 'DELETE_THEME', 68564, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3645, NULL, '2020-01-21 14:00:00+00', 'DELETE_THEME', 26832, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3646, 39679, '2020-01-21 14:00:00+00', 'DELETE_THEME', 28921, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3647, NULL, '2020-01-21 14:00:00+00', 'DELETE_THEME', 38201, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3648, 24588, '2020-01-21 14:00:00+00', 'DELETE_THEME', 17504, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3649, NULL, '2020-01-21 14:00:00+00', 'DELETE_THEME', 49545, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3650, 50581, '2020-01-21 14:00:00+00', 'DELETE_THEME', 29473, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3651, NULL, '2020-01-21 14:00:00+00', 'DELETE_THEME', 40756, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3652, 79708, '2020-01-21 14:00:00+00', 'WRITE_MESSAGE', 2873, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3653, NULL, '2020-01-21 14:00:00+00', 'WRITE_MESSAGE', 96261, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3654, 91949, '2020-01-21 14:00:00+00', 'WRITE_MESSAGE', 96248, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3655, NULL, '2020-01-21 14:00:00+00', 'WRITE_MESSAGE', 327, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3656, 24216, '2020-01-21 14:00:00+00', 'WRITE_MESSAGE', 82009, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3657, NULL, '2020-01-21 14:00:00+00', 'WRITE_MESSAGE', 64232, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3658, 80875, '2020-01-21 14:00:00+00', 'WRITE_MESSAGE', 3048, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3659, NULL, '2020-01-21 14:00:00+00', 'WRITE_MESSAGE', 15101, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3660, 54960, '2020-01-21 14:00:00+00', 'WRITE_MESSAGE', 47906, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3661, NULL, '2020-01-21 14:00:00+00', 'WRITE_MESSAGE', 13197, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3662, 40645, '2020-01-22 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3663, NULL, '2020-01-22 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3664, 61920, '2020-01-22 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3665, NULL, '2020-01-22 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3666, 77094, '2020-01-22 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3667, NULL, '2020-01-22 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3668, 36234, '2020-01-22 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3669, NULL, '2020-01-22 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3670, 88759, '2020-01-22 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3671, NULL, '2020-01-22 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3672, 10810, '2020-01-22 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3673, NULL, '2020-01-22 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3674, 99402, '2020-01-22 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3675, NULL, '2020-01-22 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3676, 1205, '2020-01-22 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3677, NULL, '2020-01-22 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3678, 22295, '2020-01-22 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3679, NULL, '2020-01-22 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3680, 62653, '2020-01-22 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3681, NULL, '2020-01-22 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3682, 41021, '2020-01-22 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3683, NULL, '2020-01-22 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3684, 63113, '2020-01-22 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3685, NULL, '2020-01-22 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3686, 42409, '2020-01-22 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3687, NULL, '2020-01-22 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3688, 68341, '2020-01-22 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3689, NULL, '2020-01-22 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3690, 26664, '2020-01-22 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3691, NULL, '2020-01-22 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3692, 91302, '2020-01-22 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3693, NULL, '2020-01-22 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3694, 56897, '2020-01-22 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3695, NULL, '2020-01-22 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3696, 51010, '2020-01-22 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3697, NULL, '2020-01-22 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3698, 83098, '2020-01-22 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3699, NULL, '2020-01-22 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3700, 27643, '2020-01-22 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3701, NULL, '2020-01-22 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3702, 89784, '2020-01-22 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3703, NULL, '2020-01-22 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3704, 24336, '2020-01-22 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3705, NULL, '2020-01-22 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3706, 6199, '2020-01-22 14:00:00+00', 'ENTRY_THEME', 14263, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3707, NULL, '2020-01-22 14:00:00+00', 'ENTRY_THEME', 1971, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3708, 28840, '2020-01-22 14:00:00+00', 'ENTRY_THEME', 33107, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3709, NULL, '2020-01-22 14:00:00+00', 'ENTRY_THEME', 92808, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3710, 25824, '2020-01-22 14:00:00+00', 'ENTRY_THEME', 58717, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3711, NULL, '2020-01-22 14:00:00+00', 'DELETE_THEME', 65986, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3712, 23940, '2020-01-22 14:00:00+00', 'DELETE_THEME', 86582, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3713, NULL, '2020-01-22 14:00:00+00', 'DELETE_THEME', 38031, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3714, 79790, '2020-01-22 14:00:00+00', 'DELETE_THEME', 21837, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3715, NULL, '2020-01-22 14:00:00+00', 'DELETE_THEME', 83699, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3716, 73417, '2020-01-22 14:00:00+00', 'DELETE_THEME', 48164, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3717, NULL, '2020-01-22 14:00:00+00', 'DELETE_THEME', 79047, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3718, 86220, '2020-01-22 14:00:00+00', 'WRITE_MESSAGE', 37735, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3719, NULL, '2020-01-22 14:00:00+00', 'WRITE_MESSAGE', 97790, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3720, 67849, '2020-01-22 14:00:00+00', 'WRITE_MESSAGE', 8115, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3721, NULL, '2020-01-22 14:00:00+00', 'WRITE_MESSAGE', 18989, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3722, 33573, '2020-01-22 14:00:00+00', 'WRITE_MESSAGE', 86094, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3723, NULL, '2020-01-22 14:00:00+00', 'WRITE_MESSAGE', 2617, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3724, 13712, '2020-01-22 14:00:00+00', 'WRITE_MESSAGE', 14300, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3725, NULL, '2020-01-22 14:00:00+00', 'WRITE_MESSAGE', 4707, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3726, 32493, '2020-01-23 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3727, NULL, '2020-01-23 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3728, 43269, '2020-01-23 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3729, NULL, '2020-01-23 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3730, 41303, '2020-01-23 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3731, NULL, '2020-01-23 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3732, 29548, '2020-01-23 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3733, NULL, '2020-01-23 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3734, 12975, '2020-01-23 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3735, NULL, '2020-01-23 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3736, 36512, '2020-01-23 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3737, NULL, '2020-01-23 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3738, 19659, '2020-01-23 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3739, NULL, '2020-01-23 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3740, 89507, '2020-01-23 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3741, NULL, '2020-01-23 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3742, 53106, '2020-01-23 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3743, NULL, '2020-01-23 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3744, 26385, '2020-01-23 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3745, NULL, '2020-01-23 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3746, 32437, '2020-01-23 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3747, NULL, '2020-01-23 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3748, 21350, '2020-01-23 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3749, NULL, '2020-01-23 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3750, 58875, '2020-01-23 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3751, NULL, '2020-01-23 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3752, 39097, '2020-01-23 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3753, NULL, '2020-01-23 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3754, 48643, '2020-01-23 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3755, NULL, '2020-01-23 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3756, 24682, '2020-01-23 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3757, NULL, '2020-01-23 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3758, 30599, '2020-01-23 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3759, NULL, '2020-01-23 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3760, 35375, '2020-01-23 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3761, NULL, '2020-01-23 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3762, 68249, '2020-01-23 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3763, NULL, '2020-01-23 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3764, 43096, '2020-01-23 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3765, NULL, '2020-01-23 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3766, 21824, '2020-01-23 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3767, NULL, '2020-01-23 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3768, 78291, '2020-01-23 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3769, NULL, '2020-01-23 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3770, 80818, '2020-01-23 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3771, NULL, '2020-01-23 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3772, 88618, '2020-01-23 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3773, NULL, '2020-01-23 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3774, 49599, '2020-01-23 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3775, NULL, '2020-01-23 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3776, 31323, '2020-01-23 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3777, NULL, '2020-01-23 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3778, 67635, '2020-01-23 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3779, NULL, '2020-01-23 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3780, 34412, '2020-01-23 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3781, NULL, '2020-01-23 14:00:00+00', 'ENTRY_THEME', 97843, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3782, 63304, '2020-01-23 14:00:00+00', 'ENTRY_THEME', 87126, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3783, NULL, '2020-01-23 14:00:00+00', 'ENTRY_THEME', 36580, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3784, 27534, '2020-01-23 14:00:00+00', 'ENTRY_THEME', 73614, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3785, NULL, '2020-01-23 14:00:00+00', 'ENTRY_THEME', 74215, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3786, 57465, '2020-01-23 14:00:00+00', 'ENTRY_THEME', 12141, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3787, NULL, '2020-01-23 14:00:00+00', 'ENTRY_THEME', 12055, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3788, 51853, '2020-01-23 14:00:00+00', 'ENTRY_THEME', 32769, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3789, NULL, '2020-01-23 14:00:00+00', 'ENTRY_THEME', 60707, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3790, 49901, '2020-01-23 14:00:00+00', 'ENTRY_THEME', 67227, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3791, NULL, '2020-01-23 14:00:00+00', 'ENTRY_THEME', 44088, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3792, 30232, '2020-01-23 14:00:00+00', 'DELETE_THEME', 31736, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3793, NULL, '2020-01-23 14:00:00+00', 'DELETE_THEME', 78686, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3794, 79819, '2020-01-23 14:00:00+00', 'DELETE_THEME', 36629, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3795, NULL, '2020-01-23 14:00:00+00', 'DELETE_THEME', 49722, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3796, 4247, '2020-01-23 14:00:00+00', 'DELETE_THEME', 97122, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3797, NULL, '2020-01-23 14:00:00+00', 'DELETE_THEME', 76511, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3798, 94691, '2020-01-23 14:00:00+00', 'DELETE_THEME', 32420, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3799, NULL, '2020-01-23 14:00:00+00', 'DELETE_THEME', 19724, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3800, 9277, '2020-01-23 14:00:00+00', 'DELETE_THEME', 71842, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3801, NULL, '2020-01-23 14:00:00+00', 'DELETE_THEME', 4327, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3802, 52988, '2020-01-23 14:00:00+00', 'DELETE_THEME', 37009, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3803, NULL, '2020-01-23 14:00:00+00', 'WRITE_MESSAGE', 7858, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3804, 46177, '2020-01-23 14:00:00+00', 'WRITE_MESSAGE', 9146, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3805, NULL, '2020-01-23 14:00:00+00', 'WRITE_MESSAGE', 75696, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3806, 98707, '2020-01-23 14:00:00+00', 'WRITE_MESSAGE', 36440, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3807, NULL, '2020-01-23 14:00:00+00', 'WRITE_MESSAGE', 79461, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3808, 66121, '2020-01-23 14:00:00+00', 'WRITE_MESSAGE', 76975, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3809, NULL, '2020-01-24 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3810, 96577, '2020-01-24 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3811, NULL, '2020-01-24 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3812, 69972, '2020-01-24 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3813, NULL, '2020-01-24 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3814, 39794, '2020-01-24 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3815, NULL, '2020-01-24 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3816, 95750, '2020-01-24 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3817, NULL, '2020-01-24 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3818, 42110, '2020-01-24 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3819, NULL, '2020-01-24 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3820, 36736, '2020-01-24 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3821, NULL, '2020-01-24 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3822, 3303, '2020-01-24 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3823, NULL, '2020-01-24 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3824, 14543, '2020-01-24 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3825, NULL, '2020-01-24 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3826, 14667, '2020-01-24 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3827, NULL, '2020-01-24 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3828, 47069, '2020-01-24 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3829, NULL, '2020-01-24 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3830, 3610, '2020-01-24 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3831, NULL, '2020-01-24 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3832, 48546, '2020-01-24 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3833, NULL, '2020-01-24 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3834, 12540, '2020-01-24 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3835, NULL, '2020-01-24 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3836, 54593, '2020-01-24 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3837, NULL, '2020-01-24 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3838, 80973, '2020-01-24 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3839, NULL, '2020-01-24 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3840, 22488, '2020-01-24 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3841, NULL, '2020-01-24 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3842, 43623, '2020-01-24 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3843, NULL, '2020-01-24 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3844, 59648, '2020-01-24 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3845, NULL, '2020-01-24 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3846, 74531, '2020-01-24 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3847, NULL, '2020-01-24 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3848, 74986, '2020-01-24 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3849, NULL, '2020-01-24 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3850, 78506, '2020-01-24 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3851, NULL, '2020-01-24 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3852, 52337, '2020-01-24 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3853, NULL, '2020-01-24 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3854, 87335, '2020-01-24 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3855, NULL, '2020-01-24 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3856, 47038, '2020-01-24 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3857, NULL, '2020-01-24 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3858, 29540, '2020-01-24 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3859, NULL, '2020-01-24 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3860, 96524, '2020-01-24 14:00:00+00', 'ENTRY_THEME', 49891, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3861, NULL, '2020-01-24 14:00:00+00', 'ENTRY_THEME', 3809, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3862, 57744, '2020-01-24 14:00:00+00', 'ENTRY_THEME', 96733, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3863, NULL, '2020-01-24 14:00:00+00', 'ENTRY_THEME', 29337, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3864, 10799, '2020-01-24 14:00:00+00', 'ENTRY_THEME', 2378, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3865, NULL, '2020-01-24 14:00:00+00', 'DELETE_THEME', 89006, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3866, 66055, '2020-01-24 14:00:00+00', 'DELETE_THEME', 91997, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3867, NULL, '2020-01-24 14:00:00+00', 'DELETE_THEME', 16826, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3868, 4938, '2020-01-24 14:00:00+00', 'DELETE_THEME', 28014, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3869, NULL, '2020-01-24 14:00:00+00', 'DELETE_THEME', 76066, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3870, 61185, '2020-01-24 14:00:00+00', 'DELETE_THEME', 21907, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3871, NULL, '2020-01-24 14:00:00+00', 'DELETE_THEME', 30947, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3872, 79347, '2020-01-24 14:00:00+00', 'DELETE_THEME', 82125, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3873, NULL, '2020-01-24 14:00:00+00', 'DELETE_THEME', 4360, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3874, 49601, '2020-01-24 14:00:00+00', 'DELETE_THEME', 95912, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3875, NULL, '2020-01-24 14:00:00+00', 'DELETE_THEME', 82417, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3876, 47704, '2020-01-24 14:00:00+00', 'DELETE_THEME', 37194, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3877, NULL, '2020-01-24 14:00:00+00', 'WRITE_MESSAGE', 74467, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3878, 74885, '2020-01-24 14:00:00+00', 'WRITE_MESSAGE', 70565, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3879, NULL, '2020-01-24 14:00:00+00', 'WRITE_MESSAGE', 93605, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3880, 42711, '2020-01-24 14:00:00+00', 'WRITE_MESSAGE', 55216, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3881, NULL, '2020-01-24 14:00:00+00', 'WRITE_MESSAGE', 8825, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3882, 80640, '2020-01-24 14:00:00+00', 'WRITE_MESSAGE', 46108, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3883, NULL, '2020-01-24 14:00:00+00', 'WRITE_MESSAGE', 31064, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3884, 97819, '2020-01-25 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3885, NULL, '2020-01-25 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3886, 1677, '2020-01-25 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3887, NULL, '2020-01-25 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3888, 11635, '2020-01-25 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3889, NULL, '2020-01-25 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3890, 17853, '2020-01-25 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3891, NULL, '2020-01-25 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3892, 23848, '2020-01-25 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3893, NULL, '2020-01-25 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3894, 4571, '2020-01-25 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3895, NULL, '2020-01-25 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3896, 88115, '2020-01-25 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3897, NULL, '2020-01-25 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3898, 70386, '2020-01-25 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3899, NULL, '2020-01-25 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3900, 62276, '2020-01-25 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3901, NULL, '2020-01-25 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3902, 60812, '2020-01-25 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3903, NULL, '2020-01-25 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3904, 32025, '2020-01-25 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3905, NULL, '2020-01-25 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3906, 33833, '2020-01-25 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3907, NULL, '2020-01-25 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3908, 68294, '2020-01-25 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3909, NULL, '2020-01-25 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3910, 57187, '2020-01-25 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3911, NULL, '2020-01-25 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3912, 28575, '2020-01-25 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3913, NULL, '2020-01-25 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3914, 41686, '2020-01-25 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3915, NULL, '2020-01-25 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3916, 12072, '2020-01-25 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3917, NULL, '2020-01-25 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3918, 32186, '2020-01-25 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3919, NULL, '2020-01-25 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3920, 83190, '2020-01-25 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3921, NULL, '2020-01-25 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3922, 17511, '2020-01-25 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3923, NULL, '2020-01-25 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3924, 75158, '2020-01-25 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3925, NULL, '2020-01-25 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3926, 78455, '2020-01-25 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3927, NULL, '2020-01-25 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3928, 154, '2020-01-25 14:00:00+00', 'ENTRY_THEME', 20944, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3929, NULL, '2020-01-25 14:00:00+00', 'ENTRY_THEME', 45567, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3930, 7995, '2020-01-25 14:00:00+00', 'ENTRY_THEME', 4695, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3931, NULL, '2020-01-25 14:00:00+00', 'ENTRY_THEME', 20191, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3932, 27521, '2020-01-25 14:00:00+00', 'ENTRY_THEME', 74074, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3933, NULL, '2020-01-25 14:00:00+00', 'ENTRY_THEME', 89259, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3934, 8388, '2020-01-25 14:00:00+00', 'ENTRY_THEME', 65664, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3935, NULL, '2020-01-25 14:00:00+00', 'ENTRY_THEME', 84762, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3936, 85973, '2020-01-25 14:00:00+00', 'ENTRY_THEME', 4255, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3937, NULL, '2020-01-25 14:00:00+00', 'ENTRY_THEME', 35743, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3938, 18790, '2020-01-25 14:00:00+00', 'ENTRY_THEME', 20771, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3939, NULL, '2020-01-25 14:00:00+00', 'ENTRY_THEME', 69008, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3940, 17621, '2020-01-25 14:00:00+00', 'DELETE_THEME', 18858, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3941, NULL, '2020-01-25 14:00:00+00', 'DELETE_THEME', 16455, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3942, 27800, '2020-01-25 14:00:00+00', 'DELETE_THEME', 51632, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3943, NULL, '2020-01-25 14:00:00+00', 'DELETE_THEME', 74723, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3944, 50770, '2020-01-25 14:00:00+00', 'DELETE_THEME', 88342, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3945, NULL, '2020-01-25 14:00:00+00', 'DELETE_THEME', 14670, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3946, 2254, '2020-01-25 14:00:00+00', 'DELETE_THEME', 84791, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3947, NULL, '2020-01-25 14:00:00+00', 'DELETE_THEME', 30618, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3948, 53403, '2020-01-25 14:00:00+00', 'DELETE_THEME', 12063, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3949, NULL, '2020-01-25 14:00:00+00', 'DELETE_THEME', 68673, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3950, 69108, '2020-01-25 14:00:00+00', 'DELETE_THEME', 930, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3951, NULL, '2020-01-25 14:00:00+00', 'DELETE_THEME', 87472, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3952, 4827, '2020-01-25 14:00:00+00', 'DELETE_THEME', 49335, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3953, NULL, '2020-01-25 14:00:00+00', 'WRITE_MESSAGE', 4791, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3954, 77286, '2020-01-25 14:00:00+00', 'WRITE_MESSAGE', 44830, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3955, NULL, '2020-01-25 14:00:00+00', 'WRITE_MESSAGE', 90985, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3956, 68381, '2020-01-25 14:00:00+00', 'WRITE_MESSAGE', 97886, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3957, NULL, '2020-01-25 14:00:00+00', 'WRITE_MESSAGE', 25644, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3958, 32608, '2020-01-25 14:00:00+00', 'WRITE_MESSAGE', 30923, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3959, NULL, '2020-01-25 14:00:00+00', 'WRITE_MESSAGE', 2576, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3960, 78994, '2020-01-25 14:00:00+00', 'WRITE_MESSAGE', 51892, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3961, NULL, '2020-01-26 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3962, 40395, '2020-01-26 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3963, NULL, '2020-01-26 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3964, 62794, '2020-01-26 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3965, NULL, '2020-01-26 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3966, 44842, '2020-01-26 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3967, NULL, '2020-01-26 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3968, 6376, '2020-01-26 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3969, NULL, '2020-01-26 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3970, 45143, '2020-01-26 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3971, NULL, '2020-01-26 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3972, 14878, '2020-01-26 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3973, NULL, '2020-01-26 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3974, 71815, '2020-01-26 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3975, NULL, '2020-01-26 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3976, 76400, '2020-01-26 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3977, NULL, '2020-01-26 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3978, 96697, '2020-01-26 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3979, NULL, '2020-01-26 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3980, 841, '2020-01-26 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3981, NULL, '2020-01-26 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3982, 61034, '2020-01-26 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3983, NULL, '2020-01-26 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3984, 19686, '2020-01-26 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3985, NULL, '2020-01-26 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3986, 77802, '2020-01-26 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3987, NULL, '2020-01-26 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3988, 48359, '2020-01-26 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3989, NULL, '2020-01-26 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3990, 44121, '2020-01-26 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3991, NULL, '2020-01-26 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3992, 5159, '2020-01-26 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3993, NULL, '2020-01-26 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3994, 40061, '2020-01-26 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3995, NULL, '2020-01-26 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3996, 49896, '2020-01-26 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3997, NULL, '2020-01-26 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3998, 29286, '2020-01-26 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (3999, NULL, '2020-01-26 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4000, 94621, '2020-01-26 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4001, NULL, '2020-01-26 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4002, 19714, '2020-01-26 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4003, NULL, '2020-01-26 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4004, 16292, '2020-01-26 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4005, NULL, '2020-01-26 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4006, 49495, '2020-01-26 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4007, NULL, '2020-01-26 14:00:00+00', 'ENTRY_THEME', 57785, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4008, 8128, '2020-01-26 14:00:00+00', 'ENTRY_THEME', 78952, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4009, NULL, '2020-01-26 14:00:00+00', 'ENTRY_THEME', 71602, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4010, 17772, '2020-01-26 14:00:00+00', 'ENTRY_THEME', 20661, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4011, NULL, '2020-01-26 14:00:00+00', 'ENTRY_THEME', 10985, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4012, 15992, '2020-01-26 14:00:00+00', 'DELETE_THEME', 72139, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4013, NULL, '2020-01-26 14:00:00+00', 'DELETE_THEME', 15734, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4014, 42222, '2020-01-26 14:00:00+00', 'DELETE_THEME', 62178, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4015, NULL, '2020-01-26 14:00:00+00', 'DELETE_THEME', 93551, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4016, 11926, '2020-01-26 14:00:00+00', 'DELETE_THEME', 61439, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4017, NULL, '2020-01-26 14:00:00+00', 'WRITE_MESSAGE', 89806, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4018, 63280, '2020-01-26 14:00:00+00', 'WRITE_MESSAGE', 74622, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4019, NULL, '2020-01-26 14:00:00+00', 'WRITE_MESSAGE', 92011, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4020, 93407, '2020-01-26 14:00:00+00', 'WRITE_MESSAGE', 37687, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4021, NULL, '2020-01-26 14:00:00+00', 'WRITE_MESSAGE', 8427, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4022, 91628, '2020-01-26 14:00:00+00', 'WRITE_MESSAGE', 61654, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4023, NULL, '2020-01-26 14:00:00+00', 'WRITE_MESSAGE', 42714, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4024, 32326, '2020-01-26 14:00:00+00', 'WRITE_MESSAGE', 52961, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4025, NULL, '2020-01-26 14:00:00+00', 'WRITE_MESSAGE', 17369, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4026, 39188, '2020-01-27 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4027, NULL, '2020-01-27 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4028, 90371, '2020-01-27 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4029, NULL, '2020-01-27 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4030, 346, '2020-01-27 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4031, NULL, '2020-01-27 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4032, 3881, '2020-01-27 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4033, NULL, '2020-01-27 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4034, 38659, '2020-01-27 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4035, NULL, '2020-01-27 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4036, 23640, '2020-01-27 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4037, NULL, '2020-01-27 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4038, 83176, '2020-01-27 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4039, NULL, '2020-01-27 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4040, 68761, '2020-01-27 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4041, NULL, '2020-01-27 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4042, 39989, '2020-01-27 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4043, NULL, '2020-01-27 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4044, 83858, '2020-01-27 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4045, NULL, '2020-01-27 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4046, 74215, '2020-01-27 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4047, NULL, '2020-01-27 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4048, 71299, '2020-01-27 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4049, NULL, '2020-01-27 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4050, 63824, '2020-01-27 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4051, NULL, '2020-01-27 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4052, 75056, '2020-01-27 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4053, NULL, '2020-01-27 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4054, 89756, '2020-01-27 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4055, NULL, '2020-01-27 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4056, 19592, '2020-01-27 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4057, NULL, '2020-01-27 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4058, 48622, '2020-01-27 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4059, NULL, '2020-01-27 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4060, 15992, '2020-01-27 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4061, NULL, '2020-01-27 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4062, 53626, '2020-01-27 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4063, NULL, '2020-01-27 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4064, 26555, '2020-01-27 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4065, NULL, '2020-01-27 14:00:00+00', 'ENTRY_THEME', 28776, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4066, 57318, '2020-01-27 14:00:00+00', 'ENTRY_THEME', 22038, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4067, NULL, '2020-01-27 14:00:00+00', 'ENTRY_THEME', 7930, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4068, 24126, '2020-01-27 14:00:00+00', 'ENTRY_THEME', 82969, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4069, NULL, '2020-01-27 14:00:00+00', 'ENTRY_THEME', 84665, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4070, 84701, '2020-01-27 14:00:00+00', 'ENTRY_THEME', 50317, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4071, NULL, '2020-01-27 14:00:00+00', 'ENTRY_THEME', 52479, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4072, 78561, '2020-01-27 14:00:00+00', 'DELETE_THEME', 33965, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4073, NULL, '2020-01-27 14:00:00+00', 'DELETE_THEME', 54438, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4074, 21776, '2020-01-27 14:00:00+00', 'DELETE_THEME', 64356, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4075, NULL, '2020-01-27 14:00:00+00', 'DELETE_THEME', 13172, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4076, 18894, '2020-01-27 14:00:00+00', 'DELETE_THEME', 90210, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4077, NULL, '2020-01-27 14:00:00+00', 'DELETE_THEME', 25985, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4078, 89096, '2020-01-27 14:00:00+00', 'DELETE_THEME', 645, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4079, NULL, '2020-01-27 14:00:00+00', 'WRITE_MESSAGE', 61035, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4080, 43716, '2020-01-27 14:00:00+00', 'WRITE_MESSAGE', 8243, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4081, NULL, '2020-01-27 14:00:00+00', 'WRITE_MESSAGE', 21074, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4082, 41014, '2020-01-27 14:00:00+00', 'WRITE_MESSAGE', 66679, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4083, NULL, '2020-01-27 14:00:00+00', 'WRITE_MESSAGE', 91065, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4084, 79568, '2020-01-27 14:00:00+00', 'WRITE_MESSAGE', 2825, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4085, NULL, '2020-01-27 14:00:00+00', 'WRITE_MESSAGE', 56385, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4086, 89450, '2020-01-27 14:00:00+00', 'WRITE_MESSAGE', 79086, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4087, NULL, '2020-01-27 14:00:00+00', 'WRITE_MESSAGE', 97010, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4088, 37076, '2020-01-27 14:00:00+00', 'WRITE_MESSAGE', 36325, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4089, NULL, '2020-01-27 14:00:00+00', 'WRITE_MESSAGE', 100, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4090, 5944, '2020-01-27 14:00:00+00', 'WRITE_MESSAGE', 97959, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4091, NULL, '2020-01-27 14:00:00+00', 'WRITE_MESSAGE', 22366, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4092, 38504, '2020-01-27 14:00:00+00', 'WRITE_MESSAGE', 71617, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4093, NULL, '2020-01-27 14:00:00+00', 'WRITE_MESSAGE', 87219, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4094, 41736, '2020-01-28 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4095, NULL, '2020-01-28 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4096, 20779, '2020-01-28 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4097, NULL, '2020-01-28 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4098, 12469, '2020-01-28 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4099, NULL, '2020-01-28 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4100, 71664, '2020-01-28 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4101, NULL, '2020-01-28 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4102, 69207, '2020-01-28 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4103, NULL, '2020-01-28 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4104, 71295, '2020-01-28 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4105, NULL, '2020-01-28 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4106, 6068, '2020-01-28 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4107, NULL, '2020-01-28 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4108, 74166, '2020-01-28 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4109, NULL, '2020-01-28 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4110, 18959, '2020-01-28 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4111, NULL, '2020-01-28 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4112, 74139, '2020-01-28 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4113, NULL, '2020-01-28 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4114, 24759, '2020-01-28 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4115, NULL, '2020-01-28 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4116, 71392, '2020-01-28 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4117, NULL, '2020-01-28 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4118, 30339, '2020-01-28 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4119, NULL, '2020-01-28 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4120, 2250, '2020-01-28 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4121, NULL, '2020-01-28 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4122, 23040, '2020-01-28 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4123, NULL, '2020-01-28 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4124, 71935, '2020-01-28 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4125, NULL, '2020-01-28 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4126, 16407, '2020-01-28 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4127, NULL, '2020-01-28 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4128, 74280, '2020-01-28 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4129, NULL, '2020-01-28 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4130, 11087, '2020-01-28 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4131, NULL, '2020-01-28 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4132, 34465, '2020-01-28 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4133, NULL, '2020-01-28 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4134, 28285, '2020-01-28 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4135, NULL, '2020-01-28 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4136, 41073, '2020-01-28 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4137, NULL, '2020-01-28 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4138, 49493, '2020-01-28 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4139, NULL, '2020-01-28 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4140, 51803, '2020-01-28 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4141, NULL, '2020-01-28 14:00:00+00', 'ENTRY_THEME', 45291, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4142, 91450, '2020-01-28 14:00:00+00', 'ENTRY_THEME', 34165, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4143, NULL, '2020-01-28 14:00:00+00', 'ENTRY_THEME', 46060, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4144, 96598, '2020-01-28 14:00:00+00', 'ENTRY_THEME', 74863, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4145, NULL, '2020-01-28 14:00:00+00', 'ENTRY_THEME', 27918, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4146, 13920, '2020-01-28 14:00:00+00', 'DELETE_THEME', 9586, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4147, NULL, '2020-01-28 14:00:00+00', 'DELETE_THEME', 91203, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4148, 78377, '2020-01-28 14:00:00+00', 'DELETE_THEME', 75934, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4149, NULL, '2020-01-28 14:00:00+00', 'DELETE_THEME', 282, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4150, 67808, '2020-01-28 14:00:00+00', 'DELETE_THEME', 95041, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4151, NULL, '2020-01-28 14:00:00+00', 'DELETE_THEME', 24213, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4152, 63958, '2020-01-28 14:00:00+00', 'DELETE_THEME', 88009, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4153, NULL, '2020-01-28 14:00:00+00', 'DELETE_THEME', 30656, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4154, 21186, '2020-01-28 14:00:00+00', 'DELETE_THEME', 74688, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4155, NULL, '2020-01-28 14:00:00+00', 'DELETE_THEME', 81257, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4156, 91453, '2020-01-28 14:00:00+00', 'DELETE_THEME', 8663, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4157, NULL, '2020-01-28 14:00:00+00', 'WRITE_MESSAGE', 59491, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4158, 74294, '2020-01-28 14:00:00+00', 'WRITE_MESSAGE', 79727, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4159, NULL, '2020-01-28 14:00:00+00', 'WRITE_MESSAGE', 85438, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4160, 89062, '2020-01-28 14:00:00+00', 'WRITE_MESSAGE', 32825, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4161, NULL, '2020-01-28 14:00:00+00', 'WRITE_MESSAGE', 23580, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4162, 75334, '2020-01-28 14:00:00+00', 'WRITE_MESSAGE', 53308, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4163, NULL, '2020-01-28 14:00:00+00', 'WRITE_MESSAGE', 89961, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4164, 3812, '2020-01-28 14:00:00+00', 'WRITE_MESSAGE', 94725, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4165, NULL, '2020-01-28 14:00:00+00', 'WRITE_MESSAGE', 17782, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4166, 82771, '2020-01-28 14:00:00+00', 'WRITE_MESSAGE', 80472, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4167, NULL, '2020-01-29 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4168, 55681, '2020-01-29 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4169, NULL, '2020-01-29 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4170, 54243, '2020-01-29 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4171, NULL, '2020-01-29 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4172, 96913, '2020-01-29 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4173, NULL, '2020-01-29 14:00:00+00', 'FIRST_ENTRY', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4174, 53462, '2020-01-29 14:00:00+00', 'FIRST_ENTRY', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4175, NULL, '2020-01-29 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4176, 64775, '2020-01-29 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4177, NULL, '2020-01-29 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4178, 79776, '2020-01-29 14:00:00+00', 'REGISTRATION', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4179, NULL, '2020-01-29 14:00:00+00', 'REGISTRATION', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4180, 10652, '2020-01-29 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4181, NULL, '2020-01-29 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4182, 34827, '2020-01-29 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4183, NULL, '2020-01-29 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4184, 87782, '2020-01-29 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4185, NULL, '2020-01-29 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4186, 36448, '2020-01-29 14:00:00+00', 'LOGIN', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4187, NULL, '2020-01-29 14:00:00+00', 'LOGIN', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4188, 770, '2020-01-29 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4189, NULL, '2020-01-29 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4190, 1752, '2020-01-29 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4191, NULL, '2020-01-29 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4192, 21602, '2020-01-29 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4193, NULL, '2020-01-29 14:00:00+00', 'LOGOUT', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4194, 61943, '2020-01-29 14:00:00+00', 'LOGOUT', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4195, NULL, '2020-01-29 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4196, 84978, '2020-01-29 14:00:00+00', 'CREATE_THEME', NULL, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4197, NULL, '2020-01-29 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4198, 41311, '2020-01-29 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4199, NULL, '2020-01-29 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4200, 57340, '2020-01-29 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4201, NULL, '2020-01-29 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4202, 1626, '2020-01-29 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4203, NULL, '2020-01-29 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4204, 12685, '2020-01-29 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4205, NULL, '2020-01-29 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4206, 52438, '2020-01-29 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4207, NULL, '2020-01-29 14:00:00+00', 'CREATE_THEME', NULL, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4208, 27772, '2020-01-29 14:00:00+00', 'ENTRY_THEME', 78625, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4209, NULL, '2020-01-29 14:00:00+00', 'ENTRY_THEME', 18323, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4210, 23844, '2020-01-29 14:00:00+00', 'ENTRY_THEME', 38704, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4211, NULL, '2020-01-29 14:00:00+00', 'ENTRY_THEME', 21616, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4212, 48918, '2020-01-29 14:00:00+00', 'ENTRY_THEME', 46747, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4213, NULL, '2020-01-29 14:00:00+00', 'ENTRY_THEME', 52930, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4214, 85417, '2020-01-29 14:00:00+00', 'ENTRY_THEME', 44767, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4215, NULL, '2020-01-29 14:00:00+00', 'ENTRY_THEME', 52264, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4216, 49814, '2020-01-29 14:00:00+00', 'ENTRY_THEME', 61514, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4217, NULL, '2020-01-29 14:00:00+00', 'ENTRY_THEME', 36493, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4218, 90020, '2020-01-29 14:00:00+00', 'ENTRY_THEME', 44215, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4219, NULL, '2020-01-29 14:00:00+00', 'ENTRY_THEME', 14708, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4220, 66815, '2020-01-29 14:00:00+00', 'ENTRY_THEME', 51872, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4221, NULL, '2020-01-29 14:00:00+00', 'ENTRY_THEME', 58784, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4222, 14886, '2020-01-29 14:00:00+00', 'DELETE_THEME', 34834, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4223, NULL, '2020-01-29 14:00:00+00', 'DELETE_THEME', 3198, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4224, 51540, '2020-01-29 14:00:00+00', 'DELETE_THEME', 48896, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4225, NULL, '2020-01-29 14:00:00+00', 'DELETE_THEME', 89763, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4226, 85875, '2020-01-29 14:00:00+00', 'DELETE_THEME', 7299, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4227, NULL, '2020-01-29 14:00:00+00', 'DELETE_THEME', 47614, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4228, 91520, '2020-01-29 14:00:00+00', 'DELETE_THEME', 14752, false);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4229, NULL, '2020-01-29 14:00:00+00', 'DELETE_THEME', 69129, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4230, 1453, '2020-01-29 14:00:00+00', 'WRITE_MESSAGE', 86160, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4231, NULL, '2020-01-29 14:00:00+00', 'WRITE_MESSAGE', 99434, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4232, 70284, '2020-01-29 14:00:00+00', 'WRITE_MESSAGE', 50101, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4233, NULL, '2020-01-29 14:00:00+00', 'WRITE_MESSAGE', 46863, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4234, 40435, '2020-01-29 14:00:00+00', 'WRITE_MESSAGE', 16845, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4235, NULL, '2020-01-29 14:00:00+00', 'WRITE_MESSAGE', 92073, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4236, 39081, '2020-01-29 14:00:00+00', 'WRITE_MESSAGE', 60611, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4237, NULL, '2020-01-29 14:00:00+00', 'WRITE_MESSAGE', 67804, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4238, 33767, '2020-01-29 14:00:00+00', 'WRITE_MESSAGE', 22337, true);
INSERT INTO public.log (id, user_id, datetime, action, object_id, success_response) VALUES (4239, NULL, '2020-01-29 14:00:00+00', 'WRITE_MESSAGE', 5110, true);
2025-03-14 04:22:14 +10:00
--
-- Name: log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public.log_id_seq', 4239, true);
2025-03-14 04:22:14 +10:00
--
-- Name: log log_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public.log
ADD CONSTRAINT log_pkey PRIMARY KEY (id);
--
-- PostgreSQL database dump complete
--