-- -- PostgreSQL database dump -- -- Dumped from database version 10.16 (Debian 10.16-1.pgdg90+1) -- Dumped by pg_dump version 13.2 -- Started on 2021-03-09 16:00:59 SET statement_timeout = 0; SET lock_timeout = 0; SET idle_in_transaction_session_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; -- -- TOC entry 9 (class 2615 OID 16914) -- Name: testtenant_mod_users; Type: SCHEMA; Schema: -; Owner: testtenant_mod_users -- CREATE SCHEMA testtenant_mod_users; ALTER SCHEMA testtenant_mod_users OWNER TO testtenant_mod_users; -- -- TOC entry 2 (class 3079 OID 16922) -- Name: pg_trgm; Type: EXTENSION; Schema: -; Owner: - -- CREATE EXTENSION IF NOT EXISTS pg_trgm WITH SCHEMA public; -- -- TOC entry 3073 (class 0 OID 0) -- Dependencies: 2 -- Name: EXTENSION pg_trgm; Type: COMMENT; Schema: -; Owner: -- COMMENT ON EXTENSION pg_trgm IS 'text similarity measurement and index searching based on trigrams'; -- -- TOC entry 3 (class 3079 OID 16915) -- Name: unaccent; Type: EXTENSION; Schema: -; Owner: - -- CREATE EXTENSION IF NOT EXISTS unaccent WITH SCHEMA public; -- -- TOC entry 3074 (class 0 OID 0) -- Dependencies: 3 -- Name: EXTENSION unaccent; Type: COMMENT; Schema: -; Owner: -- COMMENT ON EXTENSION unaccent IS 'text search dictionary that removes accents'; -- -- TOC entry 262 (class 1255 OID 17114) -- Name: addresstype_set_md(); Type: FUNCTION; Schema: testtenant_mod_users; Owner: folio -- CREATE FUNCTION testtenant_mod_users.addresstype_set_md() RETURNS trigger LANGUAGE plpgsql AS $$ DECLARE input text; createdDate timestamp; BEGIN input = NEW.jsonb->'metadata'->>'createdDate'; IF input IS NULL THEN RETURN NEW; END IF; -- time stamp without time zone? IF (input::timestamp::timestamptz = input::timestamptz) THEN -- createdDate already has no time zone, normalize using ::timestamp createdDate = input::timestamp; ELSE -- createdDate has a time zone string -- normalize using ::timestamptz, convert to '+00' time zone and remove time zone string createdDate = input::timestamptz AT TIME ZONE '+00'; END IF; NEW.jsonb = jsonb_set(NEW.jsonb, '{metadata,createdDate}', to_jsonb(createdDate)); NEW.creation_date = createdDate; NEW.created_by = NEW.jsonb->'metadata'->>'createdByUserId'; RETURN NEW; END; $$; ALTER FUNCTION testtenant_mod_users.addresstype_set_md() OWNER TO folio; -- -- TOC entry 284 (class 1255 OID 17031) -- Name: concat_array_object(jsonb); Type: FUNCTION; Schema: testtenant_mod_users; Owner: folio -- CREATE FUNCTION testtenant_mod_users.concat_array_object(jsonb_array jsonb) RETURNS text LANGUAGE sql IMMUTABLE STRICT PARALLEL SAFE AS $_$ SELECT string_agg(value::text, ' ') FROM jsonb_array_elements_text($1); $_$; ALTER FUNCTION testtenant_mod_users.concat_array_object(jsonb_array jsonb) OWNER TO folio; -- -- TOC entry 281 (class 1255 OID 17028) -- Name: concat_array_object_values(jsonb, text); Type: FUNCTION; Schema: testtenant_mod_users; Owner: folio -- CREATE FUNCTION testtenant_mod_users.concat_array_object_values(jsonb_array jsonb, field text) RETURNS text LANGUAGE sql IMMUTABLE STRICT PARALLEL SAFE AS $_$ SELECT string_agg(value->>$2, ' ') FROM jsonb_array_elements($1); $_$; ALTER FUNCTION testtenant_mod_users.concat_array_object_values(jsonb_array jsonb, field text) OWNER TO folio; -- -- TOC entry 282 (class 1255 OID 17029) -- Name: concat_array_object_values(jsonb, text, text, text); Type: FUNCTION; Schema: testtenant_mod_users; Owner: folio -- CREATE FUNCTION testtenant_mod_users.concat_array_object_values(jsonb_array jsonb, field text, filterkey text, filtervalue text) RETURNS text LANGUAGE sql IMMUTABLE STRICT PARALLEL SAFE AS $_$ SELECT string_agg(value->>$2, ' ') FROM jsonb_array_elements($1) WHERE value->>$3 = $4; $_$; ALTER FUNCTION testtenant_mod_users.concat_array_object_values(jsonb_array jsonb, field text, filterkey text, filtervalue text) OWNER TO folio; -- -- TOC entry 280 (class 1255 OID 17027) -- Name: concat_space_sql(text[]); Type: FUNCTION; Schema: testtenant_mod_users; Owner: folio -- CREATE FUNCTION testtenant_mod_users.concat_space_sql(VARIADIC text[]) RETURNS text LANGUAGE sql IMMUTABLE STRICT PARALLEL SAFE AS $_$ select concat_ws(' ', VARIADIC $1); $_$; ALTER FUNCTION testtenant_mod_users.concat_space_sql(VARIADIC text[]) OWNER TO folio; -- -- TOC entry 272 (class 1255 OID 17019) -- Name: count_estimate(text); Type: FUNCTION; Schema: testtenant_mod_users; Owner: folio -- CREATE FUNCTION testtenant_mod_users.count_estimate(query text) RETURNS bigint LANGUAGE plpgsql STABLE STRICT AS $$ DECLARE count bigint; est_count bigint; q text; BEGIN est_count = testtenant_mod_users.count_estimate_smart2(1000, 1000, query); IF est_count > 4*1000 THEN RETURN est_count; END IF; q = 'SELECT COUNT(*) FROM (' || query || ' LIMIT 1000) x'; EXECUTE q INTO count; IF count < 1000 THEN RETURN count; END IF; IF est_count < 1000 THEN RETURN 1000; END IF; RETURN est_count; END; $$; ALTER FUNCTION testtenant_mod_users.count_estimate(query text) OWNER TO folio; -- -- TOC entry 271 (class 1255 OID 17018) -- Name: count_estimate_default(text); Type: FUNCTION; Schema: testtenant_mod_users; Owner: folio -- CREATE FUNCTION testtenant_mod_users.count_estimate_default(query text) RETURNS bigint LANGUAGE plpgsql IMMUTABLE STRICT AS $$ DECLARE rows bigint; q text; BEGIN q = 'SELECT COUNT(*) FROM (' || query || ' LIMIT 1000) x'; EXECUTE q INTO rows; IF rows < 1000 THEN return rows; END IF; rows = testtenant_mod_users.count_estimate_smart2(1000, 1000, query); IF rows < 1000 THEN return 1000; END IF; RETURN rows; END; $$; ALTER FUNCTION testtenant_mod_users.count_estimate_default(query text) OWNER TO folio; -- -- TOC entry 270 (class 1255 OID 17186) -- Name: count_estimate_smart2(bigint, bigint, text); Type: FUNCTION; Schema: testtenant_mod_users; Owner: folio -- CREATE FUNCTION testtenant_mod_users.count_estimate_smart2(rows bigint, lim bigint, query text) RETURNS bigint LANGUAGE plpgsql STRICT AS $$ DECLARE rec record; cnt bigint; BEGIN IF rows = lim THEN FOR rec IN EXECUTE 'EXPLAIN ' || query LOOP cnt := substring(rec."QUERY PLAN" FROM ' rows=([[:digit:]]+)'); EXIT WHEN cnt IS NOT NULL; END LOOP; RETURN cnt; END IF; RETURN rows; END; $$; ALTER FUNCTION testtenant_mod_users.count_estimate_smart2(rows bigint, lim bigint, query text) OWNER TO folio; -- -- TOC entry 258 (class 1255 OID 17058) -- Name: departments_set_md(); Type: FUNCTION; Schema: testtenant_mod_users; Owner: folio -- CREATE FUNCTION testtenant_mod_users.departments_set_md() RETURNS trigger LANGUAGE plpgsql AS $$ DECLARE input text; createdDate timestamp; BEGIN input = NEW.jsonb->'metadata'->>'createdDate'; IF input IS NULL THEN RETURN NEW; END IF; -- time stamp without time zone? IF (input::timestamp::timestamptz = input::timestamptz) THEN -- createdDate already has no time zone, normalize using ::timestamp createdDate = input::timestamp; ELSE -- createdDate has a time zone string -- normalize using ::timestamptz, convert to '+00' time zone and remove time zone string createdDate = input::timestamptz AT TIME ZONE '+00'; END IF; NEW.jsonb = jsonb_set(NEW.jsonb, '{metadata,createdDate}', to_jsonb(createdDate)); NEW.creation_date = createdDate; NEW.created_by = NEW.jsonb->'metadata'->>'createdByUserId'; RETURN NEW; END; $$; ALTER FUNCTION testtenant_mod_users.departments_set_md() OWNER TO folio; -- -- TOC entry 273 (class 1255 OID 17020) -- Name: f_unaccent(text); Type: FUNCTION; Schema: testtenant_mod_users; Owner: folio -- CREATE FUNCTION testtenant_mod_users.f_unaccent(text) RETURNS text LANGUAGE sql IMMUTABLE STRICT PARALLEL SAFE AS $_$ SELECT regexp_replace(public.unaccent('public.unaccent', $1), E'[\u0300\u0301\u0302\u0303\u0304\u0305\u0306\u0307\u0308\u0309\u030a\u030b\u030c\u030d\u030e\u030f' || E'\u0310\u0311\u0312\u0313\u0314\u0315\u0316\u0317\u0318\u0319\u031a\u031b\u031c\u031d\u031e\u031f' || E'\u0320\u0321\u0322\u0323\u0324\u0325\u0326\u0327\u0328\u0329\u032a\u032b\u032c\u032d\u032e\u032f' || E'\u0330\u0331\u0332\u0333\u0334\u0335\u0336\u0337\u0338\u0339\u033a\u033b\u033c\u033d\u033e\u033f' || E'\u0340\u0341\u0342\u0343\u0344\u0345\u0346\u0347\u0348\u0349\u034a\u034b\u034c\u034d\u034e\u034f' || E'\u0350\u0351\u0352\u0353\u0354\u0355\u0356\u0357\u0358\u0359\u035a\u035b\u035c\u035d\u035e\u035f' || E'\u0360\u0361\u0362' || E'\u20dd\u20de\u20df\u20e0' || E'\u20e2\u20e3\u20e4]', '', 'g') $_$; ALTER FUNCTION testtenant_mod_users.f_unaccent(text) OWNER TO folio; -- -- TOC entry 283 (class 1255 OID 17030) -- Name: first_array_object_value(jsonb, text, text, text); Type: FUNCTION; Schema: testtenant_mod_users; Owner: folio -- CREATE FUNCTION testtenant_mod_users.first_array_object_value(jsonb_array jsonb, field text, filterkey text, filtervalue text) RETURNS text LANGUAGE sql IMMUTABLE STRICT PARALLEL SAFE AS $_$ SELECT value->>$2 FROM jsonb_array_elements($1) WHERE value->>$3 = $4 LIMIT 1; $_$; ALTER FUNCTION testtenant_mod_users.first_array_object_value(jsonb_array jsonb, field text, filterkey text, filtervalue text) OWNER TO folio; -- -- TOC entry 274 (class 1255 OID 17021) -- Name: get_tsvector(text); Type: FUNCTION; Schema: testtenant_mod_users; Owner: folio -- CREATE FUNCTION testtenant_mod_users.get_tsvector(text) RETURNS tsvector LANGUAGE sql IMMUTABLE STRICT PARALLEL SAFE AS $_$ SELECT to_tsvector('simple', translate($1, '&', ',')); $_$; ALTER FUNCTION testtenant_mod_users.get_tsvector(text) OWNER TO folio; -- -- TOC entry 256 (class 1255 OID 17043) -- Name: groups_set_md(); Type: FUNCTION; Schema: testtenant_mod_users; Owner: folio -- CREATE FUNCTION testtenant_mod_users.groups_set_md() RETURNS trigger LANGUAGE plpgsql AS $$ DECLARE input text; createdDate timestamp; BEGIN input = NEW.jsonb->'metadata'->>'createdDate'; IF input IS NULL THEN RETURN NEW; END IF; -- time stamp without time zone? IF (input::timestamp::timestamptz = input::timestamptz) THEN -- createdDate already has no time zone, normalize using ::timestamp createdDate = input::timestamp; ELSE -- createdDate has a time zone string -- normalize using ::timestamptz, convert to '+00' time zone and remove time zone string createdDate = input::timestamptz AT TIME ZONE '+00'; END IF; NEW.jsonb = jsonb_set(NEW.jsonb, '{metadata,createdDate}', to_jsonb(createdDate)); NEW.creation_date = createdDate; NEW.created_by = NEW.jsonb->'metadata'->>'createdByUserId'; RETURN NEW; END; $$; ALTER FUNCTION testtenant_mod_users.groups_set_md() OWNER TO folio; -- -- TOC entry 255 (class 1255 OID 17014) -- Name: next_uuid(uuid); Type: FUNCTION; Schema: testtenant_mod_users; Owner: folio -- CREATE FUNCTION testtenant_mod_users.next_uuid(uuid) RETURNS uuid LANGUAGE plpgsql AS $_$ DECLARE uuid text; digit text; BEGIN uuid = $1; FOR i IN REVERSE 36..1 LOOP digit := substring(uuid from i for 1); -- skip minus, version byte M and variant byte N CONTINUE WHEN digit = '-' OR i = 15 OR i = 20; CASE digit WHEN '0' THEN digit := '1'; WHEN '1' THEN digit := '2'; WHEN '2' THEN digit := '3'; WHEN '3' THEN digit := '4'; WHEN '4' THEN digit := '5'; WHEN '5' THEN digit := '6'; WHEN '6' THEN digit := '7'; WHEN '7' THEN digit := '8'; WHEN '8' THEN digit := '9'; WHEN '9' THEN digit := 'a'; WHEN 'a' THEN digit := 'b'; WHEN 'b' THEN digit := 'c'; WHEN 'c' THEN digit := 'd'; WHEN 'd' THEN digit := 'e'; WHEN 'e' THEN digit := 'f'; WHEN 'f' THEN digit := '0'; ELSE NULL; END CASE; uuid = overlay(uuid placing digit from i); EXIT WHEN digit <> '0'; END LOOP; RETURN uuid; END; $_$; ALTER FUNCTION testtenant_mod_users.next_uuid(uuid) OWNER TO folio; -- -- TOC entry 278 (class 1255 OID 17025) -- Name: normalize_digits(text); Type: FUNCTION; Schema: testtenant_mod_users; Owner: folio -- CREATE FUNCTION testtenant_mod_users.normalize_digits(text) RETURNS text LANGUAGE sql IMMUTABLE STRICT PARALLEL SAFE AS $_$ SELECT translate((regexp_match($1, '^([0-9 \t-]*(?:\*[ \t]*)?)(.*)'))[1], E' \t-', '') || CASE WHEN (regexp_match($1, '^([0-9 \t-]*(?:\*[ \t]*)?)(.*)'))[1] = '' THEN '' WHEN (regexp_match($1, '^([0-9 \t-]*(?:\*[ \t]*)?)(.*)'))[2] = '' THEN '' ELSE ' ' END || (regexp_match($1, '^([0-9 \t-]*(?:\*[ \t]*)?)(.*)'))[2]; $_$; ALTER FUNCTION testtenant_mod_users.normalize_digits(text) OWNER TO folio; -- -- TOC entry 268 (class 1255 OID 17160) -- Name: process_department_assign(); Type: FUNCTION; Schema: testtenant_mod_users; Owner: folio -- CREATE FUNCTION testtenant_mod_users.process_department_assign() RETURNS trigger LANGUAGE plpgsql AS $$ DECLARE dep_id text; BEGIN IF (TG_OP = 'INSERT' OR TG_OP = 'UPDATE') THEN FOR dep_id IN (SELECT jsonb_array_elements_text(NEW.jsonb->'departments')) LOOP IF ((SELECT COUNT(*) FROM testtenant_mod_users.departments WHERE id::text = dep_id) != 1) THEN RAISE foreign_key_violation USING DETAIL = format('Key (departments)=(%s) is not present in table "departments".', dep_id); END IF; END LOOP; END IF; RETURN NEW; END; $$; ALTER FUNCTION testtenant_mod_users.process_department_assign() OWNER TO folio; -- -- TOC entry 269 (class 1255 OID 17162) -- Name: process_department_delete(); Type: FUNCTION; Schema: testtenant_mod_users; Owner: folio -- CREATE FUNCTION testtenant_mod_users.process_department_delete() RETURNS trigger LANGUAGE plpgsql AS $$ DECLARE fk_counter integer := 0; BEGIN IF (TG_OP = 'DELETE') THEN SELECT COUNT(*) INTO fk_counter FROM testtenant_mod_users.users WHERE id = (SELECT id FROM testtenant_mod_users.users WHERE OLD.id::text = ANY (SELECT jsonb_array_elements_text(jsonb->'departments')) LIMIT 1); IF (fk_counter > 0) THEN RAISE foreign_key_violation USING DETAIL = format('Key (id)=(%s) is still referenced from table "users".', OLD.jsonb->>'id'); END IF; END IF; RETURN OLD; END; $$; ALTER FUNCTION testtenant_mod_users.process_department_delete() OWNER TO folio; -- -- TOC entry 264 (class 1255 OID 17129) -- Name: proxyfor_set_md(); Type: FUNCTION; Schema: testtenant_mod_users; Owner: folio -- CREATE FUNCTION testtenant_mod_users.proxyfor_set_md() RETURNS trigger LANGUAGE plpgsql AS $$ DECLARE input text; createdDate timestamp; BEGIN input = NEW.jsonb->'metadata'->>'createdDate'; IF input IS NULL THEN RETURN NEW; END IF; -- time stamp without time zone? IF (input::timestamp::timestamptz = input::timestamptz) THEN -- createdDate already has no time zone, normalize using ::timestamp createdDate = input::timestamp; ELSE -- createdDate has a time zone string -- normalize using ::timestamptz, convert to '+00' time zone and remove time zone string createdDate = input::timestamptz AT TIME ZONE '+00'; END IF; NEW.jsonb = jsonb_set(NEW.jsonb, '{metadata,createdDate}', to_jsonb(createdDate)); NEW.creation_date = createdDate; NEW.created_by = NEW.jsonb->'metadata'->>'createdByUserId'; RETURN NEW; END; $$; ALTER FUNCTION testtenant_mod_users.proxyfor_set_md() OWNER TO folio; -- -- TOC entry 285 (class 1255 OID 17032) -- Name: rmb_internal_index(text, text, text, text); Type: FUNCTION; Schema: testtenant_mod_users; Owner: folio -- CREATE FUNCTION testtenant_mod_users.rmb_internal_index(atable text, aname text, tops text, newdef text) RETURNS void LANGUAGE plpgsql AS $_$ DECLARE olddef text; namep CONSTANT text = concat(aname, '_p'); prepareddef text; BEGIN IF tops = 'DELETE' THEN -- use case insensitive %s, not case sensitive %I -- no SQL injection because the names are hard-coded in schema.json EXECUTE format('DROP INDEX IF EXISTS %s', aname); EXECUTE 'DELETE FROM testtenant_mod_users.rmb_internal_index WHERE name = $1' USING aname; RETURN; END IF; SELECT def INTO olddef FROM testtenant_mod_users.rmb_internal_index WHERE name = aname; SELECT def INTO prepareddef FROM testtenant_mod_users.rmb_internal_index WHERE name = namep; prepareddef = replace(prepareddef, concat(' ', namep, ' ON '), concat(' ', aname, ' ON ')); IF prepareddef = newdef THEN EXECUTE format('DROP INDEX IF EXISTS %s', aname); EXECUTE format('ALTER INDEX IF EXISTS %s RENAME TO %s', namep, aname); EXECUTE 'DELETE FROM rmb_internal_index WHERE name = $1' USING namep; EXECUTE 'INSERT INTO rmb_internal_analyze VALUES ($1)' USING atable; ELSIF olddef IS DISTINCT FROM newdef THEN EXECUTE format('DROP INDEX IF EXISTS %s', aname); EXECUTE newdef; EXECUTE 'INSERT INTO rmb_internal_analyze VALUES ($1)' USING atable; END IF; EXECUTE 'INSERT INTO testtenant_mod_users.rmb_internal_index VALUES ($1, $2, FALSE) ' 'ON CONFLICT (name) DO UPDATE SET def = EXCLUDED.def, remove = EXCLUDED.remove' USING aname, newdef; END $_$; ALTER FUNCTION testtenant_mod_users.rmb_internal_index(atable text, aname text, tops text, newdef text) OWNER TO folio; -- -- TOC entry 263 (class 1255 OID 17116) -- Name: set_addresstype_md_json(); Type: FUNCTION; Schema: testtenant_mod_users; Owner: folio -- CREATE FUNCTION testtenant_mod_users.set_addresstype_md_json() RETURNS trigger LANGUAGE plpgsql AS $$ BEGIN if NEW.creation_date IS NULL then RETURN NEW; end if; NEW.jsonb = jsonb_set(NEW.jsonb, '{metadata,createdDate}', to_jsonb(NEW.creation_date)); if NEW.created_by IS NULL then NEW.jsonb = NEW.jsonb #- '{metadata,createdByUserId}'; else NEW.jsonb = jsonb_set(NEW.jsonb, '{metadata,createdByUserId}', to_jsonb(NEW.created_by)); end if; RETURN NEW; END; $$; ALTER FUNCTION testtenant_mod_users.set_addresstype_md_json() OWNER TO folio; -- -- TOC entry 266 (class 1255 OID 17147) -- Name: set_custom_fields_md_json(); Type: FUNCTION; Schema: testtenant_mod_users; Owner: folio -- CREATE FUNCTION testtenant_mod_users.set_custom_fields_md_json() RETURNS trigger LANGUAGE plpgsql AS $$ DECLARE createdDate timestamp WITH TIME ZONE; createdBy text ; updatedDate timestamp WITH TIME ZONE; updatedBy text ; injectedMetadata text; createdByUsername text; updatedByUsername text; BEGIN createdBy = OLD.jsonb->'metadata'->>'createdByUserId'; createdDate = OLD.jsonb->'metadata'->>'createdDate'; createdByUsername = OLD.jsonb->'metadata'->>'createdByUsername'; updatedBy = NEW.jsonb->'metadata'->>'updatedByUserId'; updatedDate = NEW.jsonb->'metadata'->>'updatedDate'; updatedByUsername = NEW.jsonb->'metadata'->>'updatedByUsername'; if createdBy ISNULL then createdBy = 'undefined'; end if; if updatedBy ISNULL then updatedBy = 'undefined'; end if; if createdByUsername ISNULL then createdByUsername = 'undefined'; end if; if updatedByUsername ISNULL then updatedByUsername = 'undefined'; end if; if createdDate IS NOT NULL then injectedMetadata = '{"createdDate":"'||to_char(createdDate,'YYYY-MM-DD"T"HH24:MI:SS.MS')||'" , "createdByUserId":"'||createdBy||'" , "createdByUsername":"'||createdByUsername||'", "updatedDate":"'||to_char(updatedDate,'YYYY-MM-DD"T"HH24:MI:SS.MSOF')||'" , "updatedByUserId":"'||updatedBy||'" , "updatedByUsername":"'|| updatedByUsername||'"}'; NEW.jsonb = jsonb_set(NEW.jsonb, '{metadata}' , injectedMetadata::jsonb , false); else NEW.jsonb = NEW.jsonb; end if; RETURN NEW; END; $$; ALTER FUNCTION testtenant_mod_users.set_custom_fields_md_json() OWNER TO folio; -- -- TOC entry 259 (class 1255 OID 17060) -- Name: set_departments_md_json(); Type: FUNCTION; Schema: testtenant_mod_users; Owner: folio -- CREATE FUNCTION testtenant_mod_users.set_departments_md_json() RETURNS trigger LANGUAGE plpgsql AS $$ BEGIN if NEW.creation_date IS NULL then RETURN NEW; end if; NEW.jsonb = jsonb_set(NEW.jsonb, '{metadata,createdDate}', to_jsonb(NEW.creation_date)); if NEW.created_by IS NULL then NEW.jsonb = NEW.jsonb #- '{metadata,createdByUserId}'; else NEW.jsonb = jsonb_set(NEW.jsonb, '{metadata,createdByUserId}', to_jsonb(NEW.created_by)); end if; RETURN NEW; END; $$; ALTER FUNCTION testtenant_mod_users.set_departments_md_json() OWNER TO folio; -- -- TOC entry 257 (class 1255 OID 17045) -- Name: set_groups_md_json(); Type: FUNCTION; Schema: testtenant_mod_users; Owner: folio -- CREATE FUNCTION testtenant_mod_users.set_groups_md_json() RETURNS trigger LANGUAGE plpgsql AS $$ BEGIN if NEW.creation_date IS NULL then RETURN NEW; end if; NEW.jsonb = jsonb_set(NEW.jsonb, '{metadata,createdDate}', to_jsonb(NEW.creation_date)); if NEW.created_by IS NULL then NEW.jsonb = NEW.jsonb #- '{metadata,createdByUserId}'; else NEW.jsonb = jsonb_set(NEW.jsonb, '{metadata,createdByUserId}', to_jsonb(NEW.created_by)); end if; RETURN NEW; END; $$; ALTER FUNCTION testtenant_mod_users.set_groups_md_json() OWNER TO folio; -- -- TOC entry 279 (class 1255 OID 17026) -- Name: set_id_in_jsonb(); Type: FUNCTION; Schema: testtenant_mod_users; Owner: folio -- CREATE FUNCTION testtenant_mod_users.set_id_in_jsonb() RETURNS trigger LANGUAGE plpgsql AS $$ BEGIN NEW.jsonb = jsonb_set(NEW.jsonb, '{id}', to_jsonb(NEW.id)); RETURN NEW; END; $$; ALTER FUNCTION testtenant_mod_users.set_id_in_jsonb() OWNER TO folio; -- -- TOC entry 265 (class 1255 OID 17131) -- Name: set_proxyfor_md_json(); Type: FUNCTION; Schema: testtenant_mod_users; Owner: folio -- CREATE FUNCTION testtenant_mod_users.set_proxyfor_md_json() RETURNS trigger LANGUAGE plpgsql AS $$ BEGIN if NEW.creation_date IS NULL then RETURN NEW; end if; NEW.jsonb = jsonb_set(NEW.jsonb, '{metadata,createdDate}', to_jsonb(NEW.creation_date)); if NEW.created_by IS NULL then NEW.jsonb = NEW.jsonb #- '{metadata,createdByUserId}'; else NEW.jsonb = jsonb_set(NEW.jsonb, '{metadata,createdByUserId}', to_jsonb(NEW.created_by)); end if; RETURN NEW; END; $$; ALTER FUNCTION testtenant_mod_users.set_proxyfor_md_json() OWNER TO folio; -- -- TOC entry 261 (class 1255 OID 17102) -- Name: set_users_md_json(); Type: FUNCTION; Schema: testtenant_mod_users; Owner: folio -- CREATE FUNCTION testtenant_mod_users.set_users_md_json() RETURNS trigger LANGUAGE plpgsql AS $$ BEGIN if NEW.creation_date IS NULL then RETURN NEW; end if; NEW.jsonb = jsonb_set(NEW.jsonb, '{metadata,createdDate}', to_jsonb(NEW.creation_date)); if NEW.created_by IS NULL then NEW.jsonb = NEW.jsonb #- '{metadata,createdByUserId}'; else NEW.jsonb = jsonb_set(NEW.jsonb, '{metadata,createdByUserId}', to_jsonb(NEW.created_by)); end if; RETURN NEW; END; $$; ALTER FUNCTION testtenant_mod_users.set_users_md_json() OWNER TO folio; -- -- TOC entry 275 (class 1255 OID 17022) -- Name: tsquery_and(text); Type: FUNCTION; Schema: testtenant_mod_users; Owner: folio -- CREATE FUNCTION testtenant_mod_users.tsquery_and(text) RETURNS tsquery LANGUAGE sql IMMUTABLE STRICT PARALLEL SAFE AS $_$ SELECT to_tsquery('simple', string_agg(CASE WHEN length(v) = 0 OR v = '*' THEN '' WHEN right(v, 1) = '*' THEN '''' || left(v, -1) || ''':*' ELSE '''' || v || '''' END, '&')) FROM (SELECT regexp_split_to_table(translate($1, '&''', ',,'), ' +')) AS x(v); $_$; ALTER FUNCTION testtenant_mod_users.tsquery_and(text) OWNER TO folio; -- -- TOC entry 276 (class 1255 OID 17023) -- Name: tsquery_or(text); Type: FUNCTION; Schema: testtenant_mod_users; Owner: folio -- CREATE FUNCTION testtenant_mod_users.tsquery_or(text) RETURNS tsquery LANGUAGE sql IMMUTABLE STRICT PARALLEL SAFE AS $_$ SELECT replace(testtenant_mod_users.tsquery_and($1)::text, '&', '|')::tsquery; $_$; ALTER FUNCTION testtenant_mod_users.tsquery_or(text) OWNER TO folio; -- -- TOC entry 277 (class 1255 OID 17024) -- Name: tsquery_phrase(text); Type: FUNCTION; Schema: testtenant_mod_users; Owner: folio -- CREATE FUNCTION testtenant_mod_users.tsquery_phrase(text) RETURNS tsquery LANGUAGE sql IMMUTABLE STRICT PARALLEL SAFE AS $_$ SELECT replace(testtenant_mod_users.tsquery_and($1)::text, '&', '<->')::tsquery; $_$; ALTER FUNCTION testtenant_mod_users.tsquery_phrase(text) OWNER TO folio; -- -- TOC entry 267 (class 1255 OID 17149) -- Name: update_ref_id(); Type: FUNCTION; Schema: testtenant_mod_users; Owner: folio -- CREATE FUNCTION testtenant_mod_users.update_ref_id() RETURNS trigger LANGUAGE plpgsql AS $$ DECLARE newRefId text; oldRefId text; newCustomFieldName text; oldCustomFieldName text; BEGIN newRefId = NEW.jsonb->'refId'; oldRefId = OLD.jsonb->'refId'; newCustomFieldName = NEW.jsonb->'name'; oldCustomFieldName = OLD.jsonb->'name'; if newRefId ISNULL then newRefId := oldRefId; end if; if newCustomFieldName = oldCustomFieldName then newRefId := oldRefId; end if; NEW.jsonb = jsonb_set(NEW.jsonb, '{refId}' , newRefId::jsonb , false); RETURN NEW; END; $$; ALTER FUNCTION testtenant_mod_users.update_ref_id() OWNER TO folio; -- -- TOC entry 286 (class 1255 OID 17098) -- Name: update_users_references(); Type: FUNCTION; Schema: testtenant_mod_users; Owner: folio -- CREATE FUNCTION testtenant_mod_users.update_users_references() RETURNS trigger LANGUAGE plpgsql AS $$ BEGIN NEW.patronGroup = (NEW.jsonb->>'patronGroup'); RETURN NEW; END; $$; ALTER FUNCTION testtenant_mod_users.update_users_references() OWNER TO folio; -- -- TOC entry 260 (class 1255 OID 17100) -- Name: users_set_md(); Type: FUNCTION; Schema: testtenant_mod_users; Owner: folio -- CREATE FUNCTION testtenant_mod_users.users_set_md() RETURNS trigger LANGUAGE plpgsql AS $$ DECLARE input text; createdDate timestamp; BEGIN input = NEW.jsonb->'metadata'->>'createdDate'; IF input IS NULL THEN RETURN NEW; END IF; -- time stamp without time zone? IF (input::timestamp::timestamptz = input::timestamptz) THEN -- createdDate already has no time zone, normalize using ::timestamp createdDate = input::timestamp; ELSE -- createdDate has a time zone string -- normalize using ::timestamptz, convert to '+00' time zone and remove time zone string createdDate = input::timestamptz AT TIME ZONE '+00'; END IF; NEW.jsonb = jsonb_set(NEW.jsonb, '{metadata,createdDate}', to_jsonb(createdDate)); NEW.creation_date = createdDate; NEW.created_by = NEW.jsonb->'metadata'->>'createdByUserId'; RETURN NEW; END; $$; ALTER FUNCTION testtenant_mod_users.users_set_md() OWNER TO folio; -- -- TOC entry 254 (class 1255 OID 17013) -- Name: uuid_larger(uuid, uuid); Type: FUNCTION; Schema: testtenant_mod_users; Owner: folio -- CREATE FUNCTION testtenant_mod_users.uuid_larger(uuid, uuid) RETURNS uuid LANGUAGE plpgsql AS $_$ BEGIN IF $1 IS NULL THEN RETURN $2; END IF; IF $2 IS NULL THEN RETURN $1; END IF; IF $1 > $2 THEN RETURN $1; ELSE RETURN $2; END IF; END; $_$; ALTER FUNCTION testtenant_mod_users.uuid_larger(uuid, uuid) OWNER TO folio; -- -- TOC entry 253 (class 1255 OID 17012) -- Name: uuid_smaller(uuid, uuid); Type: FUNCTION; Schema: testtenant_mod_users; Owner: folio -- CREATE FUNCTION testtenant_mod_users.uuid_smaller(uuid, uuid) RETURNS uuid LANGUAGE plpgsql AS $_$ BEGIN IF $1 IS NULL THEN RETURN $2; END IF; IF $2 IS NULL THEN RETURN $1; END IF; IF $1 < $2 THEN RETURN $1; ELSE RETURN $2; END IF; END; $_$; ALTER FUNCTION testtenant_mod_users.uuid_smaller(uuid, uuid) OWNER TO folio; -- -- TOC entry 713 (class 1255 OID 17015) -- Name: max(uuid); Type: AGGREGATE; Schema: testtenant_mod_users; Owner: folio -- CREATE AGGREGATE testtenant_mod_users.max(uuid) ( SFUNC = testtenant_mod_users.uuid_larger, STYPE = uuid, COMBINEFUNC = testtenant_mod_users.uuid_larger, SORTOP = OPERATOR(pg_catalog.>), PARALLEL = safe ); ALTER AGGREGATE testtenant_mod_users.max(uuid) OWNER TO folio; -- -- TOC entry 714 (class 1255 OID 17016) -- Name: min(uuid); Type: AGGREGATE; Schema: testtenant_mod_users; Owner: folio -- CREATE AGGREGATE testtenant_mod_users.min(uuid) ( SFUNC = testtenant_mod_users.uuid_smaller, STYPE = uuid, COMBINEFUNC = testtenant_mod_users.uuid_smaller, SORTOP = OPERATOR(pg_catalog.<), PARALLEL = safe ); ALTER AGGREGATE testtenant_mod_users.min(uuid) OWNER TO folio; SET default_tablespace = ''; -- -- TOC entry 206 (class 1259 OID 17104) -- Name: addresstype; Type: TABLE; Schema: testtenant_mod_users; Owner: folio -- CREATE TABLE testtenant_mod_users.addresstype ( id uuid NOT NULL, jsonb jsonb NOT NULL, creation_date timestamp without time zone, created_by text ); ALTER TABLE testtenant_mod_users.addresstype OWNER TO folio; -- -- TOC entry 209 (class 1259 OID 17137) -- Name: custom_fields; Type: TABLE; Schema: testtenant_mod_users; Owner: folio -- CREATE TABLE testtenant_mod_users.custom_fields ( id uuid NOT NULL, jsonb jsonb NOT NULL, CONSTRAINT custom_fields_jsonb_check CHECK (((jsonb ->> 'refId'::text) IS NOT NULL)) ); ALTER TABLE testtenant_mod_users.custom_fields OWNER TO folio; -- -- TOC entry 204 (class 1259 OID 17047) -- Name: departments; Type: TABLE; Schema: testtenant_mod_users; Owner: folio -- CREATE TABLE testtenant_mod_users.departments ( id uuid NOT NULL, jsonb jsonb NOT NULL, creation_date timestamp without time zone, created_by text ); ALTER TABLE testtenant_mod_users.departments OWNER TO folio; -- -- TOC entry 210 (class 1259 OID 17156) -- Name: departments_view; Type: VIEW; Schema: testtenant_mod_users; Owner: folio -- CREATE VIEW testtenant_mod_users.departments_view AS SELECT NULL::uuid AS id, NULL::jsonb AS jsonb; ALTER TABLE testtenant_mod_users.departments_view OWNER TO folio; -- -- TOC entry 203 (class 1259 OID 17033) -- Name: groups; Type: TABLE; Schema: testtenant_mod_users; Owner: folio -- CREATE TABLE testtenant_mod_users.groups ( id uuid NOT NULL, jsonb jsonb NOT NULL, creation_date timestamp without time zone, created_by text ); ALTER TABLE testtenant_mod_users.groups OWNER TO folio; -- -- TOC entry 207 (class 1259 OID 17118) -- Name: proxyfor; Type: TABLE; Schema: testtenant_mod_users; Owner: folio -- CREATE TABLE testtenant_mod_users.proxyfor ( id uuid NOT NULL, jsonb jsonb NOT NULL, creation_date timestamp without time zone, created_by text ); ALTER TABLE testtenant_mod_users.proxyfor OWNER TO folio; -- -- TOC entry 200 (class 1259 OID 16989) -- Name: rmb_internal; Type: TABLE; Schema: testtenant_mod_users; Owner: folio -- CREATE TABLE testtenant_mod_users.rmb_internal ( id integer NOT NULL, jsonb jsonb NOT NULL ); ALTER TABLE testtenant_mod_users.rmb_internal OWNER TO folio; -- -- TOC entry 202 (class 1259 OID 17006) -- Name: rmb_internal_analyze; Type: TABLE; Schema: testtenant_mod_users; Owner: folio -- CREATE TABLE testtenant_mod_users.rmb_internal_analyze ( tablename text ); ALTER TABLE testtenant_mod_users.rmb_internal_analyze OWNER TO folio; -- -- TOC entry 199 (class 1259 OID 16987) -- Name: rmb_internal_id_seq; Type: SEQUENCE; Schema: testtenant_mod_users; Owner: folio -- CREATE SEQUENCE testtenant_mod_users.rmb_internal_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE testtenant_mod_users.rmb_internal_id_seq OWNER TO folio; -- -- TOC entry 3083 (class 0 OID 0) -- Dependencies: 199 -- Name: rmb_internal_id_seq; Type: SEQUENCE OWNED BY; Schema: testtenant_mod_users; Owner: folio -- ALTER SEQUENCE testtenant_mod_users.rmb_internal_id_seq OWNED BY testtenant_mod_users.rmb_internal.id; -- -- TOC entry 201 (class 1259 OID 16998) -- Name: rmb_internal_index; Type: TABLE; Schema: testtenant_mod_users; Owner: folio -- CREATE TABLE testtenant_mod_users.rmb_internal_index ( name text NOT NULL, def text NOT NULL, remove boolean NOT NULL ); ALTER TABLE testtenant_mod_users.rmb_internal_index OWNER TO folio; -- -- TOC entry 211 (class 1259 OID 17178) -- Name: rmb_job; Type: TABLE; Schema: testtenant_mod_users; Owner: folio -- CREATE TABLE testtenant_mod_users.rmb_job ( id uuid NOT NULL, jsonb jsonb NOT NULL ); ALTER TABLE testtenant_mod_users.rmb_job OWNER TO folio; -- -- TOC entry 205 (class 1259 OID 17062) -- Name: users; Type: TABLE; Schema: testtenant_mod_users; Owner: folio -- CREATE TABLE testtenant_mod_users.users ( id uuid NOT NULL, jsonb jsonb NOT NULL, creation_date timestamp without time zone, created_by text, patrongroup uuid ); ALTER TABLE testtenant_mod_users.users OWNER TO folio; -- -- TOC entry 208 (class 1259 OID 17133) -- Name: users_groups_view; Type: VIEW; Schema: testtenant_mod_users; Owner: folio -- CREATE VIEW testtenant_mod_users.users_groups_view AS SELECT users.id, users.jsonb, groups.jsonb AS group_jsonb FROM (testtenant_mod_users.users users JOIN testtenant_mod_users.groups groups ON ((testtenant_mod_users.f_unaccent((users.jsonb ->> 'patronGroup'::text)) = (groups.jsonb ->> 'id'::text)))); ALTER TABLE testtenant_mod_users.users_groups_view OWNER TO folio; -- -- TOC entry 2862 (class 2604 OID 16992) -- Name: rmb_internal id; Type: DEFAULT; Schema: testtenant_mod_users; Owner: folio -- ALTER TABLE ONLY testtenant_mod_users.rmb_internal ALTER COLUMN id SET DEFAULT nextval('testtenant_mod_users.rmb_internal_id_seq'::regclass); -- -- TOC entry 3063 (class 0 OID 17104) -- Dependencies: 206 -- Data for Name: addresstype; Type: TABLE DATA; Schema: testtenant_mod_users; Owner: folio -- COPY testtenant_mod_users.addresstype (id, jsonb, creation_date, created_by) FROM stdin; b6f4d1c6-0dfa-463c-9534-f49c4f0ae090 {"id": "b6f4d1c6-0dfa-463c-9534-f49c4f0ae090", "desc": "Claim Address", "metadata": {"createdDate": "2021-03-09T10:22:29.783", "updatedDate": "2021-03-09T10:22:29.783+00:00"}, "addressType": "Claim"} 2021-03-09 10:22:29.783 \N 93d3d88d-499b-45d0-9bc7-ac73c3a19880 {"id": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "desc": "Home Address", "metadata": {"createdDate": "2021-03-09T10:22:29.833", "updatedDate": "2021-03-09T10:22:29.833+00:00"}, "addressType": "Home"} 2021-03-09 10:22:29.833 \N 46ff3f08-8f41-485c-98d8-701ba8404f4f {"id": "46ff3f08-8f41-485c-98d8-701ba8404f4f", "desc": "Order Address", "metadata": {"createdDate": "2021-03-09T10:22:29.871", "updatedDate": "2021-03-09T10:22:29.871+00:00"}, "addressType": "Order"} 2021-03-09 10:22:29.871 \N a3c3d60b-df9e-41d9-b7f5-983008bc1a45 {"id": "a3c3d60b-df9e-41d9-b7f5-983008bc1a45", "desc": "Payment Address", "metadata": {"createdDate": "2021-03-09T10:22:29.909", "updatedDate": "2021-03-09T10:22:29.909+00:00"}, "addressType": "Payment"} 2021-03-09 10:22:29.909 \N c42be2ab-c3fd-486c-a1fe-9e5ea0f16198 {"id": "c42be2ab-c3fd-486c-a1fe-9e5ea0f16198", "desc": "Returns Address", "metadata": {"createdDate": "2021-03-09T10:22:29.946", "updatedDate": "2021-03-09T10:22:29.946+00:00"}, "addressType": "Returns"} 2021-03-09 10:22:29.946 \N 1c4b225f-f669-4e9b-afcd-ebc0e273a34e {"id": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "desc": "Work Address", "metadata": {"createdDate": "2021-03-09T10:22:29.986", "updatedDate": "2021-03-09T10:22:29.986+00:00"}, "addressType": "Work"} 2021-03-09 10:22:29.986 \N \. -- -- TOC entry 3065 (class 0 OID 17137) -- Dependencies: 209 -- Data for Name: custom_fields; Type: TABLE DATA; Schema: testtenant_mod_users; Owner: folio -- COPY testtenant_mod_users.custom_fields (id, jsonb) FROM stdin; \. -- -- TOC entry 3061 (class 0 OID 17047) -- Dependencies: 204 -- Data for Name: departments; Type: TABLE DATA; Schema: testtenant_mod_users; Owner: folio -- COPY testtenant_mod_users.departments (id, jsonb, creation_date, created_by) FROM stdin; \. -- -- TOC entry 3060 (class 0 OID 17033) -- Dependencies: 203 -- Data for Name: groups; Type: TABLE DATA; Schema: testtenant_mod_users; Owner: folio -- COPY testtenant_mod_users.groups (id, jsonb, creation_date, created_by) FROM stdin; 503a81cd-6c26-400f-b620-14c08943697c {"id": "503a81cd-6c26-400f-b620-14c08943697c", "desc": "Faculty Member", "group": "faculty", "metadata": {"createdDate": "2021-03-09T10:22:29.418", "updatedDate": "2021-03-09T10:22:29.418+00:00"}} 2021-03-09 10:22:29.418 \N ad0bc554-d5bc-463c-85d1-5562127ae91b {"id": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "desc": "Graduate Student", "group": "graduate", "metadata": {"createdDate": "2021-03-09T10:22:29.491", "updatedDate": "2021-03-09T10:22:29.491+00:00"}} 2021-03-09 10:22:29.491 \N 3684a786-6671-4268-8ed0-9db82ebca60b {"id": "3684a786-6671-4268-8ed0-9db82ebca60b", "desc": "Staff Member", "group": "staff", "metadata": {"createdDate": "2021-03-09T10:22:29.528", "updatedDate": "2021-03-09T10:22:29.528+00:00"}} 2021-03-09 10:22:29.528 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e {"id": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "desc": "Undergraduate Student", "group": "undergrad", "metadata": {"createdDate": "2021-03-09T10:22:29.564", "updatedDate": "2021-03-09T10:22:29.564+00:00"}} 2021-03-09 10:22:29.564 \N \. -- -- TOC entry 3064 (class 0 OID 17118) -- Dependencies: 207 -- Data for Name: proxyfor; Type: TABLE DATA; Schema: testtenant_mod_users; Owner: folio -- COPY testtenant_mod_users.proxyfor (id, jsonb, creation_date, created_by) FROM stdin; \. -- -- TOC entry 3057 (class 0 OID 16989) -- Dependencies: 200 -- Data for Name: rmb_internal; Type: TABLE DATA; Schema: testtenant_mod_users; Owner: folio -- COPY testtenant_mod_users.rmb_internal (id, jsonb) FROM stdin; 1 {"rmbVersion": "32.1.0", "schemaJson": "{\\r\\n \\"scripts\\" : [\\r\\n {\\r\\n \\"run\\": \\"after\\",\\r\\n \\"snippetPath\\": \\"create_custom_fields_table.sql\\",\\r\\n \\"fromModuleVersion\\": \\"mod-users-15.7.0\\"\\r\\n },\\r\\n {\\r\\n \\"run\\": \\"after\\",\\r\\n \\"snippetPath\\": \\"update-textbox-default-format.sql\\",\\r\\n \\"fromModuleVersion\\": \\"17.1.0\\"\\r\\n },\\r\\n {\\r\\n \\"run\\": \\"after\\",\\r\\n \\"snippetPath\\": \\"migrate-to-new-ref-id-format.sql\\",\\r\\n \\"fromModuleVersion\\": \\"17.1.0\\"\\r\\n },\\r\\n {\\r\\n \\"run\\": \\"after\\",\\r\\n \\"snippetPath\\": \\"create_departments_view.sql\\",\\r\\n \\"fromModuleVersion\\": \\"17.2.0\\"\\r\\n },\\r\\n {\\r\\n \\"run\\": \\"after\\",\\r\\n \\"snippetPath\\": \\"create_departments_triggers.sql\\",\\r\\n \\"fromModuleVersion\\": \\"17.2.0\\"\\r\\n },\\r\\n {\\r\\n \\"run\\": \\"before\\",\\r\\n \\"snippet\\": \\"DO $$ BEGIN DROP TABLE patron_block_conditions, patron_block_limits; EXCEPTION WHEN OTHERS THEN END; $$;\\",\\r\\n \\"fromModuleVersion\\": \\"mod-users-16.2.1\\"\\r\\n }\\r\\n ],\\r\\n \\"tables\\" : [\\r\\n {\\r\\n \\"tableName\\" : \\"groups\\",\\r\\n \\"fromModuleVersion\\" : \\"14.3\\",\\r\\n \\"withMetadata\\" : true,\\r\\n \\"uniqueIndex\\" : [\\r\\n {\\r\\n \\"fieldName\\" : \\"group\\",\\r\\n \\"tOps\\" : \\"ADD\\"\\r\\n }\\r\\n ]\\r\\n },\\r\\n {\\r\\n \\"tableName\\" : \\"departments\\",\\r\\n \\"fromModuleVersion\\" : \\"17.2.0\\",\\r\\n \\"withMetadata\\" : true,\\r\\n \\"uniqueIndex\\" : [\\r\\n {\\r\\n \\"fieldName\\" : \\"name\\",\\r\\n \\"tOps\\" : \\"ADD\\"\\r\\n },\\r\\n {\\r\\n \\"fieldName\\" : \\"code\\",\\r\\n \\"tOps\\" : \\"ADD\\"\\r\\n }\\r\\n ]\\r\\n },\\r\\n {\\r\\n \\"tableName\\" : \\"users\\",\\r\\n \\"fromModuleVersion\\" : \\"mod-users-16.0.1\\",\\r\\n \\"withMetadata\\" : true,\\r\\n \\"foreignKeys\\": [\\r\\n {\\r\\n \\"fieldName\\": \\"patronGroup\\",\\r\\n \\"targetTable\\": \\"groups\\"\\r\\n }\\r\\n ],\\r\\n \\"uniqueIndex\\" : [\\r\\n {\\r\\n \\"fieldName\\" : \\"username\\",\\r\\n \\"tOps\\" : \\"ADD\\"\\r\\n },\\r\\n {\\r\\n \\"fieldName\\" : \\"id\\",\\r\\n \\"tOps\\" : \\"DELETE\\"\\r\\n },\\r\\n {\\r\\n \\"fieldName\\" : \\"barcode\\",\\r\\n \\"tOps\\" : \\"ADD\\"\\r\\n }\\r\\n ],\\r\\n \\"index\\" : [\\r\\n {\\r\\n \\"fieldName\\" : \\"externalSystemId\\",\\r\\n \\"tOps\\" : \\"ADD\\"\\r\\n },\\r\\n {\\r\\n \\"fieldName\\" : \\"username\\",\\r\\n \\"tOps\\" : \\"DELETE\\"\\r\\n },\\r\\n {\\r\\n \\"fieldName\\" : \\"personal.firstName\\",\\r\\n \\"tOps\\" : \\"ADD\\"\\r\\n },\\r\\n {\\r\\n \\"fieldName\\" : \\"personal.lastName\\",\\r\\n \\"tOps\\" : \\"ADD\\"\\r\\n },\\r\\n {\\r\\n \\"fieldName\\" : \\"expirationDate\\",\\r\\n \\"tOps\\" : \\"ADD\\",\\r\\n \\"caseSensitive\\": true,\\r\\n \\"removeAccents\\": false\\r\\n }\\r\\n ],\\r\\n \\"ginIndex\\": [\\r\\n {\\r\\n \\"fieldName\\": \\"id\\",\\r\\n \\"tOps\\": \\"DELETE\\",\\r\\n \\"caseSensitive\\": false,\\r\\n \\"removeAccents\\": true\\r\\n },\\r\\n {\\r\\n \\"fieldName\\": \\"username\\",\\r\\n \\"tOps\\": \\"ADD\\",\\r\\n \\"caseSensitive\\": false,\\r\\n \\"removeAccents\\": true\\r\\n },\\r\\n {\\r\\n \\"fieldName\\": \\"personal.firstName\\",\\r\\n \\"tOps\\": \\"ADD\\",\\r\\n \\"caseSensitive\\": false,\\r\\n \\"removeAccents\\": true\\r\\n },\\r\\n {\\r\\n \\"fieldName\\": \\"personal.lastName\\",\\r\\n \\"tOps\\": \\"ADD\\",\\r\\n \\"caseSensitive\\": false,\\r\\n \\"removeAccents\\": true\\r\\n },\\r\\n {\\r\\n \\"fieldName\\": \\"personal.email\\",\\r\\n \\"tOps\\": \\"ADD\\",\\r\\n \\"caseSensitive\\": false,\\r\\n \\"removeAccents\\": true\\r\\n },\\r\\n {\\r\\n \\"fieldName\\": \\"barcode\\",\\r\\n \\"tOps\\": \\"ADD\\",\\r\\n \\"caseSensitive\\": false,\\r\\n \\"removeAccents\\": true\\r\\n },\\r\\n {\\r\\n \\"fieldName\\": \\"externalSystemId\\",\\r\\n \\"tOps\\": \\"ADD\\",\\r\\n \\"caseSensitive\\": false,\\r\\n \\"removeAccents\\": true\\r\\n },\\r\\n {\\r\\n \\"fieldName\\": \\"active\\",\\r\\n \\"tOps\\": \\"ADD\\",\\r\\n \\"caseSensitive\\": false,\\r\\n \\"removeAccents\\": true\\r\\n }\\r\\n ],\\r\\n \\"fullTextIndex\\" : [\\r\\n {\\r\\n \\"fieldName\\" : \\"username\\",\\r\\n \\"tOps\\" : \\"ADD\\"\\r\\n },\\r\\n {\\r\\n \\"fieldName\\" : \\"barcode\\",\\r\\n \\"tOps\\" : \\"ADD\\"\\r\\n },\\r\\n {\\r\\n \\"fieldName\\" : \\"personal.firstName\\",\\r\\n \\"tOps\\" : \\"ADD\\"\\r\\n },\\r\\n {\\r\\n \\"fieldName\\" : \\"personal.lastName\\",\\r\\n \\"tOps\\" : \\"ADD\\"\\r\\n },\\r\\n {\\r\\n \\"fieldName\\" : \\"personal.email\\",\\r\\n \\"tOps\\" : \\"ADD\\"\\r\\n },\\r\\n {\\r\\n \\"fieldName\\" : \\"externalSystemId\\",\\r\\n \\"tOps\\" : \\"ADD\\"\\r\\n },\\r\\n {\\r\\n \\"fieldName\\" : \\"active\\",\\r\\n \\"tOps\\" : \\"ADD\\"\\r\\n },\\r\\n {\\r\\n \\"fieldName\\" : \\"patronGroup\\",\\r\\n \\"tOps\\" : \\"ADD\\"\\r\\n }\\r\\n ]\\r\\n },\\r\\n {\\r\\n \\"tableName\\" : \\"addresstype\\",\\r\\n \\"fromModuleVersion\\" : \\"14.3\\",\\r\\n \\"withMetadata\\" : true,\\r\\n \\"uniqueIndex\\" : [\\r\\n {\\r\\n \\"fieldName\\" : \\"addressType\\",\\r\\n \\"tOps\\" : \\"ADD\\"\\r\\n }\\r\\n ]\\r\\n },\\r\\n {\\r\\n \\"tableName\\" : \\"proxyfor\\",\\r\\n \\"fromModuleVersion\\" : \\"14.3\\",\\r\\n \\"withMetadata\\" : true,\\r\\n \\"ginIndex\\" : [\\r\\n {\\r\\n \\"fieldName\\" : \\"userId\\",\\r\\n \\"tOps\\" : \\"ADD\\"\\r\\n }\\r\\n ],\\r\\n \\"fullTextIndex\\" : [\\r\\n {\\r\\n \\"fieldName\\" : \\"proxyUserId\\",\\r\\n \\"tOps\\" : \\"ADD\\"\\r\\n }\\r\\n ]\\r\\n }\\r\\n ],\\r\\n \\"views\\" : [\\r\\n {\\r\\n \\"viewName\\": \\"users_groups_view\\",\\r\\n \\"join\\": [\\r\\n {\\r\\n \\"table\\": {\\r\\n \\"tableName\\": \\"users\\",\\r\\n \\"joinOnField\\": \\"patronGroup\\"\\r\\n },\\r\\n \\"joinTable\\": {\\r\\n \\"tableName\\": \\"groups\\",\\r\\n \\"joinOnField\\": \\"id\\",\\r\\n \\"jsonFieldAlias\\": \\"group_jsonb\\"\\r\\n }\\r\\n }\\r\\n ]\\r\\n }\\r\\n ]\\r\\n}\\r\\n", "moduleVersion": "mod-ussers"} \. -- -- TOC entry 3059 (class 0 OID 17006) -- Dependencies: 202 -- Data for Name: rmb_internal_analyze; Type: TABLE DATA; Schema: testtenant_mod_users; Owner: folio -- COPY testtenant_mod_users.rmb_internal_analyze (tablename) FROM stdin; \. -- -- TOC entry 3058 (class 0 OID 16998) -- Dependencies: 201 -- Data for Name: rmb_internal_index; Type: TABLE DATA; Schema: testtenant_mod_users; Owner: folio -- COPY testtenant_mod_users.rmb_internal_index (name, def, remove) FROM stdin; groups_group_idx_unique CREATE UNIQUE INDEX IF NOT EXISTS groups_group_idx_unique ON testtenant_mod_users.groups (lower(f_unaccent(jsonb->>'group'))) f departments_name_idx_unique CREATE UNIQUE INDEX IF NOT EXISTS departments_name_idx_unique ON testtenant_mod_users.departments (lower(f_unaccent(jsonb->>'name'))) f departments_code_idx_unique CREATE UNIQUE INDEX IF NOT EXISTS departments_code_idx_unique ON testtenant_mod_users.departments (lower(f_unaccent(jsonb->>'code'))) f users_externalSystemId_idx CREATE INDEX IF NOT EXISTS users_externalSystemId_idx ON testtenant_mod_users.users (left(lower(f_unaccent(jsonb->>'externalSystemId')),600)) f users_personal_firstName_idx CREATE INDEX IF NOT EXISTS users_personal_firstName_idx ON testtenant_mod_users.users (left(lower(f_unaccent(jsonb->'personal'->>'firstName')),600)) f users_personal_lastName_idx CREATE INDEX IF NOT EXISTS users_personal_lastName_idx ON testtenant_mod_users.users (left(lower(f_unaccent(jsonb->'personal'->>'lastName')),600)) f users_expirationDate_idx CREATE INDEX IF NOT EXISTS users_expirationDate_idx ON testtenant_mod_users.users (left((jsonb->>'expirationDate'),600)) f users_username_idx_unique CREATE UNIQUE INDEX IF NOT EXISTS users_username_idx_unique ON testtenant_mod_users.users (lower(f_unaccent(jsonb->>'username'))) f users_barcode_idx_unique CREATE UNIQUE INDEX IF NOT EXISTS users_barcode_idx_unique ON testtenant_mod_users.users (lower(f_unaccent(jsonb->>'barcode'))) f users_username_idx_gin CREATE INDEX IF NOT EXISTS users_username_idx_gin ON testtenant_mod_users.users USING GIN ((lower(f_unaccent(jsonb->>'username'))) public.gin_trgm_ops) f users_personal_firstName_idx_gin CREATE INDEX IF NOT EXISTS users_personal_firstName_idx_gin ON testtenant_mod_users.users USING GIN ((lower(f_unaccent(jsonb->'personal'->>'firstName'))) public.gin_trgm_ops) f users_personal_lastName_idx_gin CREATE INDEX IF NOT EXISTS users_personal_lastName_idx_gin ON testtenant_mod_users.users USING GIN ((lower(f_unaccent(jsonb->'personal'->>'lastName'))) public.gin_trgm_ops) f users_personal_email_idx_gin CREATE INDEX IF NOT EXISTS users_personal_email_idx_gin ON testtenant_mod_users.users USING GIN ((lower(f_unaccent(jsonb->'personal'->>'email'))) public.gin_trgm_ops) f users_barcode_idx_gin CREATE INDEX IF NOT EXISTS users_barcode_idx_gin ON testtenant_mod_users.users USING GIN ((lower(f_unaccent(jsonb->>'barcode'))) public.gin_trgm_ops) f users_externalSystemId_idx_gin CREATE INDEX IF NOT EXISTS users_externalSystemId_idx_gin ON testtenant_mod_users.users USING GIN ((lower(f_unaccent(jsonb->>'externalSystemId'))) public.gin_trgm_ops) f users_active_idx_gin CREATE INDEX IF NOT EXISTS users_active_idx_gin ON testtenant_mod_users.users USING GIN ((lower(f_unaccent(jsonb->>'active'))) public.gin_trgm_ops) f users_username_idx_ft CREATE INDEX IF NOT EXISTS users_username_idx_ft ON testtenant_mod_users.users USING GIN ( get_tsvector(f_unaccent(jsonb->>'username')) ) f users_barcode_idx_ft CREATE INDEX IF NOT EXISTS users_barcode_idx_ft ON testtenant_mod_users.users USING GIN ( get_tsvector(f_unaccent(jsonb->>'barcode')) ) f users_personal_firstName_idx_ft CREATE INDEX IF NOT EXISTS users_personal_firstName_idx_ft ON testtenant_mod_users.users USING GIN ( get_tsvector(f_unaccent(jsonb->'personal'->>'firstName')) ) f users_personal_lastName_idx_ft CREATE INDEX IF NOT EXISTS users_personal_lastName_idx_ft ON testtenant_mod_users.users USING GIN ( get_tsvector(f_unaccent(jsonb->'personal'->>'lastName')) ) f users_personal_email_idx_ft CREATE INDEX IF NOT EXISTS users_personal_email_idx_ft ON testtenant_mod_users.users USING GIN ( get_tsvector(f_unaccent(jsonb->'personal'->>'email')) ) f users_externalSystemId_idx_ft CREATE INDEX IF NOT EXISTS users_externalSystemId_idx_ft ON testtenant_mod_users.users USING GIN ( get_tsvector(f_unaccent(jsonb->>'externalSystemId')) ) f users_active_idx_ft CREATE INDEX IF NOT EXISTS users_active_idx_ft ON testtenant_mod_users.users USING GIN ( get_tsvector(f_unaccent(jsonb->>'active')) ) f users_patronGroup_idx_ft CREATE INDEX IF NOT EXISTS users_patronGroup_idx_ft ON testtenant_mod_users.users USING GIN ( get_tsvector(f_unaccent(jsonb->>'patronGroup')) ) f addresstype_addressType_idx_unique CREATE UNIQUE INDEX IF NOT EXISTS addresstype_addressType_idx_unique ON testtenant_mod_users.addresstype (lower(f_unaccent(jsonb->>'addressType'))) f proxyfor_userId_idx_gin CREATE INDEX IF NOT EXISTS proxyfor_userId_idx_gin ON testtenant_mod_users.proxyfor USING GIN ((lower(f_unaccent(jsonb->>'userId'))) public.gin_trgm_ops) f proxyfor_proxyUserId_idx_ft CREATE INDEX IF NOT EXISTS proxyfor_proxyUserId_idx_ft ON testtenant_mod_users.proxyfor USING GIN ( get_tsvector(f_unaccent(jsonb->>'proxyUserId')) ) f \. -- -- TOC entry 3066 (class 0 OID 17178) -- Dependencies: 211 -- Data for Name: rmb_job; Type: TABLE DATA; Schema: testtenant_mod_users; Owner: folio -- COPY testtenant_mod_users.rmb_job (id, jsonb) FROM stdin; 4a24a546-ef0b-46e1-83d3-076112ce866a {"id": "4a24a546-ef0b-46e1-83d3-076112ce866a", "tenant": "testtenant", "complete": true, "messages": [], "tenantAttributes": {"module_to": "mod-ussers", "parameters": [], "module_from": "mod-users-17.2.3"}} \. -- -- TOC entry 3062 (class 0 OID 17062) -- Dependencies: 205 -- Data for Name: users; Type: TABLE DATA; Schema: testtenant_mod_users; Owner: folio -- COPY testtenant_mod_users.users (id, jsonb, creation_date, created_by, patrongroup) FROM stdin; 47f7eaea-1a18-4058-907c-62b7d095c61b {"id": "47f7eaea-1a18-4058-907c-62b7d095c61b", "type": "patron", "active": true, "barcode": "344058867767195", "metadata": {"createdDate": "2021-03-09T10:22:30.653", "updatedDate": "2021-03-09T10:22:30.653+00:00"}, "personal": {"email": "pete@schulist-raynor-and-beer.ar.us", "phone": "865.406.8773", "lastName": "Hilll", "addresses": [{"city": "Florence", "region": "ID", "countryId": "US", "postalCode": "35704", "addressLine1": "79223 Mozelle Club Suite 154", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Justen", "middleName": "Else", "dateOfBirth": "1951-03-17T00:00:00.000+00:00", "mobilePhone": "(499)102-5994 x03456", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "janae", "createdDate": "2021-03-09T10:22:30.714+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:30.714+00:00", "enrollmentDate": "2016-12-31T00:00:00.000+00:00", "expirationDate": "2019-11-27T00:00:00.000+00:00"} 2021-03-09 10:22:30.653 \N ad0bc554-d5bc-463c-85d1-5562127ae91b ab579dc3-219b-4f5b-8068-ab1c7a55c402 {"id": "ab579dc3-219b-4f5b-8068-ab1c7a55c402", "type": "patron", "active": true, "barcode": "508444097915063", "metadata": {"createdDate": "2021-03-09T10:22:30.828", "updatedDate": "2021-03-09T10:22:30.828+00:00"}, "personal": {"email": "maya@schmidt-moore-and-greenfelder.gu", "phone": "577.401.1737 x5071", "lastName": "Brakus", "addresses": [{"city": "Palm Springs", "region": "NH", "countryId": "US", "postalCode": "74737", "addressLine1": "44688 Gerhold Centers", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Velva", "middleName": "Kendall", "dateOfBirth": "1989-12-28T00:00:00.000+00:00", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "delpha", "createdDate": "2021-03-09T10:22:30.882+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:30.882+00:00", "enrollmentDate": "2018-10-15T00:00:00.000+00:00", "expirationDate": "2019-09-10T00:00:00.000+00:00"} 2021-03-09 10:22:30.828 \N 503a81cd-6c26-400f-b620-14c08943697c d0fc4228-2e42-49b2-a5b0-9df48897e8c0 {"id": "d0fc4228-2e42-49b2-a5b0-9df48897e8c0", "type": "patron", "active": true, "barcode": "109322966933845", "metadata": {"createdDate": "2021-03-09T10:22:30.975", "updatedDate": "2021-03-09T10:22:30.975+00:00"}, "personal": {"email": "anastacio@hansen-dickens-and-mante.vu", "phone": "(145)639-8408 x1218", "lastName": "Feil", "addresses": [{"city": "San Fernando", "region": "IN", "countryId": "US", "postalCode": "38250-2292", "addressLine1": "29948 Leo Ville", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Penelope", "middleName": "Myrna", "dateOfBirth": "2000-09-26T00:00:00.000+00:00", "mobilePhone": "245.227.6385 x84533", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "emmet", "createdDate": "2021-03-09T10:22:31.023+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:31.023+00:00", "enrollmentDate": "2018-07-13T00:00:00.000+00:00", "expirationDate": "2020-04-08T00:00:00.000+00:00"} 2021-03-09 10:22:30.975 \N ad0bc554-d5bc-463c-85d1-5562127ae91b 9ad09b01-7429-455f-9f64-e3897027db61 {"id": "9ad09b01-7429-455f-9f64-e3897027db61", "type": "patron", "active": true, "barcode": "724600319597122", "metadata": {"createdDate": "2021-03-09T10:22:31.117", "updatedDate": "2021-03-09T10:22:31.117+00:00"}, "personal": {"email": "ansley@larson-williamson-and-williamson.eh", "phone": "1-943-518-4026 x78360", "lastName": "McDermott", "addresses": [{"city": "Mentor-on-the-Lake", "region": "NH", "countryId": "US", "postalCode": "11231-2104", "addressLine1": "15962 Block Stravenue Suite 557", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Foster", "dateOfBirth": "1997-09-26T00:00:00.000+00:00", "mobilePhone": "254-111-0157", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "odie", "createdDate": "2021-03-09T10:22:31.169+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:31.169+00:00", "enrollmentDate": "2015-09-10T00:00:00.000+00:00", "expirationDate": "2020-12-04T00:00:00.000+00:00"} 2021-03-09 10:22:31.117 \N 3684a786-6671-4268-8ed0-9db82ebca60b ab60d124-5d41-49c5-8aae-2ef2cd3704c2 {"id": "ab60d124-5d41-49c5-8aae-2ef2cd3704c2", "type": "patron", "active": false, "barcode": "335422988847671", "metadata": {"createdDate": "2021-03-09T10:22:31.271", "updatedDate": "2021-03-09T10:22:31.271+00:00"}, "personal": {"email": "emelie@larkin-llc.rw", "phone": "1-857-058-1987", "lastName": "Torphy", "addresses": [{"city": "Seward", "region": "NY", "countryId": "US", "postalCode": "09576", "addressLine1": "16735 Leannon Trail #208", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Thad", "middleName": "Reba", "dateOfBirth": "2008-05-29T00:00:00.000+00:00", "mobilePhone": "(236)191-9481 x29491", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "lenny", "createdDate": "2021-03-09T10:22:31.325+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:31.325+00:00", "enrollmentDate": "2017-10-11T00:00:00.000+00:00", "expirationDate": "2020-07-07T00:00:00.000+00:00"} 2021-03-09 10:22:31.271 \N 3684a786-6671-4268-8ed0-9db82ebca60b e308411d-773e-416e-be58-f16176c0549e {"id": "e308411d-773e-416e-be58-f16176c0549e", "type": "patron", "active": true, "barcode": "164574230428137", "metadata": {"createdDate": "2021-03-09T10:22:31.431", "updatedDate": "2021-03-09T10:22:31.431+00:00"}, "personal": {"email": "mathias@gleichner-kozey-and-reinger.mo", "phone": "919-542-3508 x8519", "lastName": "Rowe", "addresses": [{"city": "Little Rock", "region": "MO", "countryId": "US", "postalCode": "65691-4705", "addressLine1": "65611 Harris Underpass", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Sadie", "middleName": "Sylvia", "dateOfBirth": "1974-05-13T00:00:00.000+00:00", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "marquise", "createdDate": "2021-03-09T10:22:31.486+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:31.486+00:00", "enrollmentDate": "2017-04-29T00:00:00.000+00:00", "expirationDate": "2019-06-20T00:00:00.000+00:00"} 2021-03-09 10:22:31.431 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 1f2608df-ff79-4576-b578-14627bbe87fa {"id": "1f2608df-ff79-4576-b578-14627bbe87fa", "type": "patron", "active": true, "barcode": "591740048987109", "metadata": {"createdDate": "2021-03-09T10:22:31.579", "updatedDate": "2021-03-09T10:22:31.579+00:00"}, "personal": {"email": "jackie@kuhlman-and-sons.cs", "phone": "461-124-2529 x456", "lastName": "Cartwright", "addresses": [{"city": "Forrest City", "region": "AP", "countryId": "US", "postalCode": "49987-9145", "addressLine1": "30344 Alba Shoal", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Katrina", "middleName": "Jean", "dateOfBirth": "2009-08-01T00:00:00.000+00:00", "mobilePhone": "007.454.5835", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "cleta", "createdDate": "2021-03-09T10:22:31.632+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:31.632+00:00", "enrollmentDate": "2018-12-17T00:00:00.000+00:00", "expirationDate": "2019-10-30T00:00:00.000+00:00"} 2021-03-09 10:22:31.579 \N 503a81cd-6c26-400f-b620-14c08943697c 75da2654-00a8-4ca5-9c73-2bf9e1e5c883 {"id": "75da2654-00a8-4ca5-9c73-2bf9e1e5c883", "type": "patron", "active": true, "barcode": "119980534501859", "metadata": {"createdDate": "2021-03-09T10:22:31.742", "updatedDate": "2021-03-09T10:22:31.742+00:00"}, "personal": {"email": "caden@okon-roob-and-williamson.gp", "phone": "679.923.3990", "lastName": "Hagenes", "addresses": [{"city": "Youngstown", "region": "ME", "countryId": "US", "postalCode": "53061-3085", "addressLine1": "18497 Turcotte Village Suite 044", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Macey", "middleName": "Doyle", "dateOfBirth": "1950-09-26T00:00:00.000+00:00", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "willie", "createdDate": "2021-03-09T10:22:31.796+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:31.796+00:00", "enrollmentDate": "2017-08-31T00:00:00.000+00:00", "expirationDate": "2019-05-07T00:00:00.000+00:00"} 2021-03-09 10:22:31.742 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e c926be9c-a8ce-4399-a9b3-11ec0fc8d6c9 {"id": "c926be9c-a8ce-4399-a9b3-11ec0fc8d6c9", "type": "patron", "active": true, "barcode": "899099756585922", "metadata": {"createdDate": "2021-03-09T10:22:31.887", "updatedDate": "2021-03-09T10:22:31.887+00:00"}, "personal": {"email": "janie@jacobs-murazik.ky", "phone": "1-528-887-7262 x08397", "lastName": "McDermott", "addresses": [{"city": "Redlands", "region": "OH", "countryId": "US", "postalCode": "61253-4819", "addressLine1": "64411 Bednar Drive", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Chase", "middleName": "Annie", "dateOfBirth": "1952-02-27T00:00:00.000+00:00", "mobilePhone": "016-896-5945 x46110", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "deontae", "createdDate": "2021-03-09T10:22:31.936+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:31.936+00:00", "enrollmentDate": "2018-09-19T00:00:00.000+00:00", "expirationDate": "2021-02-03T00:00:00.000+00:00"} 2021-03-09 10:22:31.887 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 6b5f249c-7df1-4c2f-afc2-0ef6fc21b701 {"id": "6b5f249c-7df1-4c2f-afc2-0ef6fc21b701", "type": "patron", "active": true, "barcode": "423963263517549", "metadata": {"createdDate": "2021-03-09T10:22:32.023", "updatedDate": "2021-03-09T10:22:32.023+00:00"}, "personal": {"email": "taryn@herman-inc.museum", "phone": "1-403-675-9843 x731", "lastName": "Quitzon", "addresses": [{"city": "San Mateo", "region": "LA", "countryId": "US", "postalCode": "23836", "addressLine1": "92083 Travis Fort Apt. 333", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Haley", "middleName": "Winona", "dateOfBirth": "2002-02-03T00:00:00.000+00:00", "mobilePhone": "933.730.7529", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "frederic", "createdDate": "2021-03-09T10:22:32.069+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:32.069+00:00", "enrollmentDate": "2015-06-09T00:00:00.000+00:00", "expirationDate": "2019-06-06T00:00:00.000+00:00"} 2021-03-09 10:22:32.023 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 8616dd12-e244-4047-834a-db0c6cd1477b {"id": "8616dd12-e244-4047-834a-db0c6cd1477b", "type": "patron", "active": false, "barcode": "592137900094893", "metadata": {"createdDate": "2021-03-09T10:22:32.162", "updatedDate": "2021-03-09T10:22:32.162+00:00"}, "personal": {"email": "hyman@mcclure-volkman.fr", "phone": "1-446-276-4528 x71327", "lastName": "Harris", "addresses": [{"city": "Jonesboro", "region": "WY", "countryId": "US", "postalCode": "58204-7848", "addressLine1": "81832 Francesco Rest", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Cloyd", "middleName": "Jerrell", "dateOfBirth": "2005-07-04T00:00:00.000+00:00", "mobilePhone": "094.181.7710 x74672", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "rudy", "createdDate": "2021-03-09T10:22:32.212+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:32.212+00:00", "enrollmentDate": "2017-02-19T00:00:00.000+00:00", "expirationDate": "2019-10-05T00:00:00.000+00:00"} 2021-03-09 10:22:32.162 \N 3684a786-6671-4268-8ed0-9db82ebca60b 9207540e-91e9-4a75-ad1e-65a715784326 {"id": "9207540e-91e9-4a75-ad1e-65a715784326", "type": "patron", "active": true, "barcode": "968532029020629", "metadata": {"createdDate": "2021-03-09T10:22:32.309", "updatedDate": "2021-03-09T10:22:32.309+00:00"}, "personal": {"email": "millie@weissnat-beer-and-willms.mg", "phone": "221.437.5773", "lastName": "Gislason", "addresses": [{"city": "Huntington Beach", "region": "MS", "countryId": "US", "postalCode": "13350", "addressLine1": "83654 Casimer Station Apt. 263", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Merle", "dateOfBirth": "1955-01-13T00:00:00.000+00:00", "mobilePhone": "330-670-9941 x17593", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "darron", "createdDate": "2021-03-09T10:22:32.362+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:32.362+00:00", "enrollmentDate": "2017-12-30T00:00:00.000+00:00", "expirationDate": "2019-11-15T00:00:00.000+00:00"} 2021-03-09 10:22:32.309 \N ad0bc554-d5bc-463c-85d1-5562127ae91b 251cfa92-24a7-45db-9f0d-acd2da450b50 {"id": "251cfa92-24a7-45db-9f0d-acd2da450b50", "type": "patron", "active": true, "barcode": "979553133418729", "metadata": {"createdDate": "2021-03-09T10:22:32.463", "updatedDate": "2021-03-09T10:22:32.463+00:00"}, "personal": {"email": "moises@blick-schuster-and-mohr.gu", "phone": "1-212-255-3771 x987", "lastName": "Boehm", "addresses": [{"city": "Tustin", "region": "AZ", "countryId": "US", "postalCode": "56980-5449", "addressLine1": "17992 Maggio Islands", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Elyse", "middleName": "Misty", "dateOfBirth": "1984-10-11T00:00:00.000+00:00", "mobilePhone": "(326)072-6068 x5435", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "dominic", "createdDate": "2021-03-09T10:22:32.519+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:32.519+00:00", "enrollmentDate": "2016-03-02T00:00:00.000+00:00", "expirationDate": "2020-01-27T00:00:00.000+00:00"} 2021-03-09 10:22:32.463 \N 3684a786-6671-4268-8ed0-9db82ebca60b bd566b21-d125-421c-9c78-2b9a8bc4c4f7 {"id": "bd566b21-d125-421c-9c78-2b9a8bc4c4f7", "type": "patron", "active": true, "barcode": "283482082624086", "metadata": {"createdDate": "2021-03-09T10:22:32.607", "updatedDate": "2021-03-09T10:22:32.607+00:00"}, "personal": {"email": "hazel@kunze-blick.jo", "phone": "121.036.1972 x4837", "lastName": "Rutherford", "addresses": [{"city": "Nome", "region": "ME", "countryId": "US", "postalCode": "60968", "addressLine1": "78856 Koch Creek #601", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Izabella", "dateOfBirth": "1956-12-17T00:00:00.000+00:00", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "emery", "createdDate": "2021-03-09T10:22:32.661+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:32.661+00:00", "enrollmentDate": "2016-12-08T00:00:00.000+00:00", "expirationDate": "2020-10-16T00:00:00.000+00:00"} 2021-03-09 10:22:32.607 \N ad0bc554-d5bc-463c-85d1-5562127ae91b 9a04ae0d-e39f-44c3-b520-43144f6d93e4 {"id": "9a04ae0d-e39f-44c3-b520-43144f6d93e4", "type": "patron", "active": true, "barcode": "933948480962822", "metadata": {"createdDate": "2021-03-09T10:22:32.765", "updatedDate": "2021-03-09T10:22:32.765+00:00"}, "personal": {"email": "mackenzie@parisian-reilly-and-strosin.ac", "phone": "1-284-395-8624 x5728", "lastName": "Becker", "addresses": [{"city": "Nenana", "region": "MO", "countryId": "US", "postalCode": "16500", "addressLine1": "51003 Efrain Mill #260", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Kaylee", "middleName": "Zola", "dateOfBirth": "1989-11-03T00:00:00.000+00:00", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "deonte", "createdDate": "2021-03-09T10:22:32.815+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:32.815+00:00", "enrollmentDate": "2015-07-18T00:00:00.000+00:00", "expirationDate": "2019-06-20T00:00:00.000+00:00"} 2021-03-09 10:22:32.765 \N ad0bc554-d5bc-463c-85d1-5562127ae91b c8c1eced-7ff5-44e2-89da-12d276c1e2bc {"id": "c8c1eced-7ff5-44e2-89da-12d276c1e2bc", "type": "patron", "active": true, "barcode": "160344906506519", "metadata": {"createdDate": "2021-03-09T10:22:32.912", "updatedDate": "2021-03-09T10:22:32.912+00:00"}, "personal": {"email": "buford@turcotte-llc.is", "phone": "(626)406-2046 x8906", "lastName": "Bechtelar", "addresses": [{"city": "Rancho Cucamonga", "region": "VI", "countryId": "US", "postalCode": "07536-0783", "addressLine1": "19978 Carter Station", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Cathrine", "middleName": "Thad", "dateOfBirth": "1977-08-15T00:00:00.000+00:00", "mobilePhone": "1-817-764-3834 x43946", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "anibal", "createdDate": "2021-03-09T10:22:32.970+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:32.970+00:00", "enrollmentDate": "2018-08-06T00:00:00.000+00:00", "expirationDate": "2019-03-13T00:00:00.000+00:00"} 2021-03-09 10:22:32.912 \N 503a81cd-6c26-400f-b620-14c08943697c ffce08d4-c08d-4ff8-8ff8-060a5015aa2a {"id": "ffce08d4-c08d-4ff8-8ff8-060a5015aa2a", "type": "patron", "active": true, "barcode": "851232198188977", "metadata": {"createdDate": "2021-03-09T10:22:33.066", "updatedDate": "2021-03-09T10:22:33.066+00:00"}, "personal": {"email": "tristian@hettinger-parker.museum", "phone": "1-042-803-9853 x64798", "lastName": "Donnelly", "addresses": [{"city": "Dana Point", "region": "MN", "countryId": "US", "postalCode": "20848", "addressLine1": "87941 Douglas Lock Suite 230", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Hildegard", "dateOfBirth": "2009-07-15T00:00:00.000+00:00", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "nina", "createdDate": "2021-03-09T10:22:33.127+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:33.127+00:00", "enrollmentDate": "2017-08-07T00:00:00.000+00:00", "expirationDate": "2020-11-26T00:00:00.000+00:00"} 2021-03-09 10:22:33.066 \N 503a81cd-6c26-400f-b620-14c08943697c 4c564a60-8ac6-41f9-a8b6-088901a5f8ca {"id": "4c564a60-8ac6-41f9-a8b6-088901a5f8ca", "type": "patron", "active": false, "barcode": "546815596354001", "metadata": {"createdDate": "2021-03-09T10:22:33.25", "updatedDate": "2021-03-09T10:22:33.250+00:00"}, "personal": {"email": "juliana@reichel-bernhard.mm", "phone": "1-232-590-6006 x66909", "lastName": "McGlynn", "addresses": [{"city": "Monterey", "region": "KY", "countryId": "US", "postalCode": "30671-2288", "addressLine1": "56788 Isadore Mountains", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Tyrel", "dateOfBirth": "1957-03-08T00:00:00.000+00:00", "mobilePhone": "1-886-930-2767 x9243", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "aron", "createdDate": "2021-03-09T10:22:33.308+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:33.308+00:00", "enrollmentDate": "2017-08-19T00:00:00.000+00:00", "expirationDate": "2020-05-30T00:00:00.000+00:00"} 2021-03-09 10:22:33.25 \N 503a81cd-6c26-400f-b620-14c08943697c 785c6f6e-36a5-4434-8aa7-210bb55cea34 {"id": "785c6f6e-36a5-4434-8aa7-210bb55cea34", "type": "patron", "active": true, "barcode": "792078722873427", "metadata": {"createdDate": "2021-03-09T10:22:33.399", "updatedDate": "2021-03-09T10:22:33.399+00:00"}, "personal": {"email": "nash@witting-mertz.om", "phone": "082.266.7001 x1124", "lastName": "McDermott", "addresses": [{"city": "Rolling Hills Estates", "region": "IN", "countryId": "US", "postalCode": "60810-1305", "addressLine1": "97189 Dovie Place", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Bill", "middleName": "Macey", "dateOfBirth": "1950-05-16T00:00:00.000+00:00", "mobilePhone": "856.132.1372 x669", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "jett", "createdDate": "2021-03-09T10:22:33.458+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:33.458+00:00", "enrollmentDate": "2015-05-09T00:00:00.000+00:00", "expirationDate": "2019-04-27T00:00:00.000+00:00"} 2021-03-09 10:22:33.399 \N 503a81cd-6c26-400f-b620-14c08943697c 745bdee1-458c-4076-bad1-be5a470c49fb {"id": "745bdee1-458c-4076-bad1-be5a470c49fb", "type": "patron", "active": true, "barcode": "723090362753680", "metadata": {"createdDate": "2021-03-09T10:22:33.543", "updatedDate": "2021-03-09T10:22:33.543+00:00"}, "personal": {"email": "lavern@heller-ryan-and-stanton.zm", "phone": "1-915-933-6017 x91395", "lastName": "Koss", "addresses": [{"city": "Fountain Valley", "region": "MI", "countryId": "US", "postalCode": "07732-8693", "addressLine1": "84348 Kaylin Turnpike", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Mossie", "dateOfBirth": "1978-12-31T00:00:00.000+00:00", "mobilePhone": "(470)016-1944", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "roberto", "createdDate": "2021-03-09T10:22:33.600+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:33.600+00:00", "enrollmentDate": "2018-08-05T00:00:00.000+00:00", "expirationDate": "2019-08-11T00:00:00.000+00:00"} 2021-03-09 10:22:33.543 \N 503a81cd-6c26-400f-b620-14c08943697c 00bc2807-4d5b-4a27-a2b5-b7b1ba431cc4 {"id": "00bc2807-4d5b-4a27-a2b5-b7b1ba431cc4", "type": "patron", "active": true, "barcode": "133143370961512", "metadata": {"createdDate": "2021-03-09T10:22:33.696", "updatedDate": "2021-03-09T10:22:33.696+00:00"}, "personal": {"email": "ahmad@kertzmann-bailey-and-brekke.io", "phone": "759.693.8557", "lastName": "Denesik", "addresses": [{"city": "Birmingham", "region": "CO", "countryId": "US", "postalCode": "85748", "addressLine1": "17691 Rodriguez Divide", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Maiya", "middleName": "Noel", "dateOfBirth": "2009-07-21T00:00:00.000+00:00", "mobilePhone": "(557)093-7575", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "sallie", "createdDate": "2021-03-09T10:22:33.747+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:33.747+00:00", "enrollmentDate": "2015-04-13T00:00:00.000+00:00", "expirationDate": "2019-06-20T00:00:00.000+00:00"} 2021-03-09 10:22:33.696 \N 503a81cd-6c26-400f-b620-14c08943697c 6c6ab6f6-394a-44a5-8d5c-66f88f9ec01d {"id": "6c6ab6f6-394a-44a5-8d5c-66f88f9ec01d", "type": "patron", "active": true, "barcode": "844336017335276", "metadata": {"createdDate": "2021-03-09T10:22:33.842", "updatedDate": "2021-03-09T10:22:33.842+00:00"}, "personal": {"email": "rowena@steuber-lynch.ga", "phone": "(246)059-3463 x7751", "lastName": "Rogahn", "addresses": [{"city": "La Verne", "region": "DE", "countryId": "US", "postalCode": "89003-6843", "addressLine1": "44710 William Summit", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Ronny", "dateOfBirth": "1966-04-11T00:00:00.000+00:00", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "susana", "createdDate": "2021-03-09T10:22:33.892+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:33.892+00:00", "enrollmentDate": "2016-02-11T00:00:00.000+00:00", "expirationDate": "2020-05-28T00:00:00.000+00:00"} 2021-03-09 10:22:33.842 \N 3684a786-6671-4268-8ed0-9db82ebca60b 457a3c37-cada-47ed-ae8d-c8eda723251f {"id": "457a3c37-cada-47ed-ae8d-c8eda723251f", "type": "patron", "active": false, "barcode": "880575347359048", "metadata": {"createdDate": "2021-03-09T10:22:33.981", "updatedDate": "2021-03-09T10:22:33.981+00:00"}, "personal": {"email": "dejah@kuphal-gerlach.bn", "phone": "538-975-1143", "lastName": "Schiller", "addresses": [{"city": "Redlands", "region": "CT", "countryId": "US", "postalCode": "75179-8405", "addressLine1": "77088 Batz Passage #269", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "River", "middleName": "Dora", "dateOfBirth": "2008-04-27T00:00:00.000+00:00", "mobilePhone": "497-708-9054 x308", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "maverick", "createdDate": "2021-03-09T10:22:34.033+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:34.033+00:00", "enrollmentDate": "2017-11-06T00:00:00.000+00:00", "expirationDate": "2021-02-27T00:00:00.000+00:00"} 2021-03-09 10:22:33.981 \N ad0bc554-d5bc-463c-85d1-5562127ae91b ceecd8ee-9586-4024-b107-d368b58a1025 {"id": "ceecd8ee-9586-4024-b107-d368b58a1025", "type": "patron", "active": true, "barcode": "573009423883949", "metadata": {"createdDate": "2021-03-09T10:22:34.127", "updatedDate": "2021-03-09T10:22:34.127+00:00"}, "personal": {"email": "reynold@schiller-rosenbaum.mr", "phone": "(272)693-4697 x283", "lastName": "Rodriguez", "addresses": [{"city": "Citrus Heights", "region": "TN", "countryId": "US", "postalCode": "79425", "addressLine1": "51874 Lot I", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Aiden", "dateOfBirth": "2006-01-06T00:00:00.000+00:00", "mobilePhone": "1-828-390-1202", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "wilson", "createdDate": "2021-03-09T10:22:34.179+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:34.179+00:00", "enrollmentDate": "2016-02-14T00:00:00.000+00:00", "expirationDate": "2020-12-10T00:00:00.000+00:00"} 2021-03-09 10:22:34.127 \N 503a81cd-6c26-400f-b620-14c08943697c a0dadce9-06ed-4b23-9fc0-6b5238aa92d8 {"id": "a0dadce9-06ed-4b23-9fc0-6b5238aa92d8", "type": "patron", "active": false, "barcode": "318184383030693", "metadata": {"createdDate": "2021-03-09T10:22:34.281", "updatedDate": "2021-03-09T10:22:34.281+00:00"}, "personal": {"email": "ethelyn@emmerich-cruickshank-and-robel.pa.us", "phone": "1-585-959-2707 x8182", "lastName": "Stroman", "addresses": [{"city": "San Rafael", "region": "AS", "countryId": "US", "postalCode": "12702", "addressLine1": "53417 Heller Glens", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Destinee", "middleName": "Tiana", "dateOfBirth": "1966-11-10T00:00:00.000+00:00", "mobilePhone": "1-761-992-0604 x36575", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "vena", "createdDate": "2021-03-09T10:22:34.333+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:34.333+00:00", "enrollmentDate": "2019-03-01T00:00:00.000+00:00", "expirationDate": "2019-07-19T00:00:00.000+00:00"} 2021-03-09 10:22:34.281 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 8d65692e-fa98-49f2-9896-f9f6b0893358 {"id": "8d65692e-fa98-49f2-9896-f9f6b0893358", "type": "patron", "active": true, "barcode": "925162037753924", "metadata": {"createdDate": "2021-03-09T10:22:34.426", "updatedDate": "2021-03-09T10:22:34.426+00:00"}, "personal": {"email": "abelardo@robel-lind.is", "phone": "(927)909-8981", "lastName": "Hammes", "addresses": [{"city": "Orange", "region": "CA", "countryId": "US", "postalCode": "14490-1529", "addressLine1": "46457 Joyce Bypass #865", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Prudence", "middleName": "Willie", "dateOfBirth": "2011-10-14T00:00:00.000+00:00", "mobilePhone": "547.314.7419 x92831", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "aliya", "createdDate": "2021-03-09T10:22:34.483+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:34.483+00:00", "enrollmentDate": "2016-09-18T00:00:00.000+00:00", "expirationDate": "2019-08-21T00:00:00.000+00:00"} 2021-03-09 10:22:34.426 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e b4e91548-c387-4b01-aaa1-489afc3f6936 {"id": "b4e91548-c387-4b01-aaa1-489afc3f6936", "type": "patron", "active": true, "barcode": "570514672235127", "metadata": {"createdDate": "2021-03-09T10:22:34.582", "updatedDate": "2021-03-09T10:22:34.582+00:00"}, "personal": {"email": "earnestine@baumbach-and-sons.biz", "phone": "664.744.4131 x4274", "lastName": "Murazik", "addresses": [{"city": "Lawndale", "region": "VI", "countryId": "US", "postalCode": "96367-3820", "addressLine1": "75141 Morissette Club", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Timothy", "middleName": "Vernice", "dateOfBirth": "1956-02-23T00:00:00.000+00:00", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "daisha", "createdDate": "2021-03-09T10:22:34.639+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:34.639+00:00", "enrollmentDate": "2016-08-10T00:00:00.000+00:00", "expirationDate": "2019-11-04T00:00:00.000+00:00"} 2021-03-09 10:22:34.582 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 1ee0a888-ade1-4bc7-a9b6-15a2d46a6b18 {"id": "1ee0a888-ade1-4bc7-a9b6-15a2d46a6b18", "type": "patron", "active": true, "barcode": "363198143212056", "metadata": {"createdDate": "2021-03-09T10:22:34.754", "updatedDate": "2021-03-09T10:22:34.754+00:00"}, "personal": {"email": "audie@johns-llc.my", "phone": "864.379.8305 x7407", "lastName": "Wiza", "addresses": [{"city": "Hoover", "region": "TX", "countryId": "US", "postalCode": "33038-7299", "addressLine1": "32477 Brigitte Burg", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Liam", "dateOfBirth": "1982-01-05T00:00:00.000+00:00", "mobilePhone": "553-544-3842", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "noelia", "createdDate": "2021-03-09T10:22:34.810+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:34.810+00:00", "enrollmentDate": "2015-07-02T00:00:00.000+00:00", "expirationDate": "2020-08-13T00:00:00.000+00:00"} 2021-03-09 10:22:34.754 \N 503a81cd-6c26-400f-b620-14c08943697c 97f100da-9218-4351-bc14-ef0558f01625 {"id": "97f100da-9218-4351-bc14-ef0558f01625", "type": "patron", "active": false, "barcode": "721881164534401", "metadata": {"createdDate": "2021-03-09T10:22:34.925", "updatedDate": "2021-03-09T10:22:34.925+00:00"}, "personal": {"email": "emmet@bayer-marquardt-and-rolfson.fo", "phone": "(506)396-7773", "lastName": "Krajcik", "addresses": [{"city": "Gary", "region": "IA", "countryId": "US", "postalCode": "15626-0889", "addressLine1": "38080 Leopoldo Parkways Suite 363", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Coralie", "middleName": "Tyra", "dateOfBirth": "1993-08-12T00:00:00.000+00:00", "mobilePhone": "(371)131-9205", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "otto", "createdDate": "2021-03-09T10:22:34.969+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:34.969+00:00", "enrollmentDate": "2018-04-16T00:00:00.000+00:00", "expirationDate": "2020-07-01T00:00:00.000+00:00"} 2021-03-09 10:22:34.925 \N 503a81cd-6c26-400f-b620-14c08943697c 066795ce-4938-48f2-9411-f3f922b51e1c {"id": "066795ce-4938-48f2-9411-f3f922b51e1c", "type": "patron", "active": true, "barcode": "562915263776012", "metadata": {"createdDate": "2021-03-09T10:22:35.088", "updatedDate": "2021-03-09T10:22:35.088+00:00"}, "personal": {"email": "jaylen@herman-jones-and-daniel.gi", "phone": "375-322-8828 x762", "lastName": "Lakin", "addresses": [{"city": "Buena Park", "region": "FM", "countryId": "US", "postalCode": "11852-6961", "addressLine1": "36432 Albina Points", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Cortney", "middleName": "Carlo", "dateOfBirth": "1986-02-09T00:00:00.000+00:00", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "arlo", "createdDate": "2021-03-09T10:22:35.155+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:35.155+00:00", "enrollmentDate": "2017-02-05T00:00:00.000+00:00", "expirationDate": "2019-05-13T00:00:00.000+00:00"} 2021-03-09 10:22:35.088 \N ad0bc554-d5bc-463c-85d1-5562127ae91b f1dc9a7e-492b-4f2b-848a-115b5919d589 {"id": "f1dc9a7e-492b-4f2b-848a-115b5919d589", "type": "patron", "active": true, "barcode": "131896890107931", "metadata": {"createdDate": "2021-03-09T10:22:35.291", "updatedDate": "2021-03-09T10:22:35.291+00:00"}, "personal": {"email": "clemmie@hettinger-larson-and-abshire.pt", "phone": "(420)513-3214", "lastName": "Heller", "addresses": [{"city": "Hoover", "region": "UT", "countryId": "US", "postalCode": "07349", "addressLine1": "59508 Lindsey Mission", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Raoul", "middleName": "Loy", "dateOfBirth": "1981-02-07T00:00:00.000+00:00", "mobilePhone": "218.514.8233 x080", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "danial", "createdDate": "2021-03-09T10:22:35.343+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:35.343+00:00", "enrollmentDate": "2019-02-08T00:00:00.000+00:00", "expirationDate": "2019-03-30T00:00:00.000+00:00"} 2021-03-09 10:22:35.291 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e a5fb6646-3e42-46ed-b686-e009e1490d2c {"id": "a5fb6646-3e42-46ed-b686-e009e1490d2c", "type": "patron", "active": true, "barcode": "124365178425740", "metadata": {"createdDate": "2021-03-09T10:22:35.426", "updatedDate": "2021-03-09T10:22:35.426+00:00"}, "personal": {"email": "dayana@carter-goodwin-and-rogahn.nv.us", "phone": "1-915-328-3353 x763", "lastName": "Torphy", "addresses": [{"city": "Rosemead", "region": "WV", "countryId": "US", "postalCode": "05956-3525", "addressLine1": "23947 Mattie Greens", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Hoyt", "middleName": "Rubye", "dateOfBirth": "1993-11-03T00:00:00.000+00:00", "mobilePhone": "1-418-738-9136 x6746", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "rosemarie", "createdDate": "2021-03-09T10:22:35.482+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:35.482+00:00", "enrollmentDate": "2016-09-11T00:00:00.000+00:00", "expirationDate": "2020-03-25T00:00:00.000+00:00"} 2021-03-09 10:22:35.426 \N 3684a786-6671-4268-8ed0-9db82ebca60b 2884afb0-5bec-45c4-b9f4-0bc525bc0322 {"id": "2884afb0-5bec-45c4-b9f4-0bc525bc0322", "type": "patron", "active": true, "barcode": "514514863206791", "metadata": {"createdDate": "2021-03-09T10:22:35.573", "updatedDate": "2021-03-09T10:22:35.573+00:00"}, "personal": {"email": "dayna@rempel-botsford-and-huels.gu", "phone": "287.264.3679", "lastName": "Waters", "addresses": [{"city": "Bellflower", "region": "MH", "countryId": "US", "postalCode": "45499", "addressLine1": "43382 Suite 4-D", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Kevin", "middleName": "Brock", "dateOfBirth": "1955-01-12T00:00:00.000+00:00", "mobilePhone": "706.601.2468 x3937", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "eden", "createdDate": "2021-03-09T10:22:35.622+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:35.622+00:00", "enrollmentDate": "2016-09-08T00:00:00.000+00:00", "expirationDate": "2019-07-01T00:00:00.000+00:00"} 2021-03-09 10:22:35.573 \N 3684a786-6671-4268-8ed0-9db82ebca60b e76cf4c9-e15a-414e-81b9-672a90fb2745 {"id": "e76cf4c9-e15a-414e-81b9-672a90fb2745", "type": "patron", "active": true, "barcode": "979109654603071", "metadata": {"createdDate": "2021-03-09T10:22:35.726", "updatedDate": "2021-03-09T10:22:35.726+00:00"}, "personal": {"email": "brandt@friesen-llc.ct.us", "phone": "093.611.7311 x8588", "lastName": "Koss", "addresses": [{"city": "Calabasas", "region": "NM", "countryId": "US", "postalCode": "26421", "addressLine1": "29651 Josie Hollow", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Margret", "middleName": "Adelia", "dateOfBirth": "2001-10-15T00:00:00.000+00:00", "mobilePhone": "(214)950-5138", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "bill", "createdDate": "2021-03-09T10:22:35.775+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:35.775+00:00", "enrollmentDate": "2019-02-07T00:00:00.000+00:00", "expirationDate": "2019-11-22T00:00:00.000+00:00"} 2021-03-09 10:22:35.726 \N ad0bc554-d5bc-463c-85d1-5562127ae91b 10cb9367-c095-4872-9add-8aecdf339dd4 {"id": "10cb9367-c095-4872-9add-8aecdf339dd4", "type": "patron", "active": false, "barcode": "824722790985458", "metadata": {"createdDate": "2021-03-09T10:22:35.864", "updatedDate": "2021-03-09T10:22:35.864+00:00"}, "personal": {"email": "evans@kohler-west.aero", "phone": "1-064-285-2113", "lastName": "Becker", "addresses": [{"city": "West Memphis", "region": "IA", "countryId": "US", "postalCode": "50594", "addressLine1": "62959 Gutmann Skyway Apt. 667", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Ariane", "dateOfBirth": "1963-03-29T00:00:00.000+00:00", "mobilePhone": "(743)529-9680", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "maribel", "createdDate": "2021-03-09T10:22:35.912+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:35.912+00:00", "enrollmentDate": "2015-10-07T00:00:00.000+00:00", "expirationDate": "2020-08-13T00:00:00.000+00:00"} 2021-03-09 10:22:35.864 \N 503a81cd-6c26-400f-b620-14c08943697c ff5ec271-7138-46d0-8ca1-f5f57790e5bd {"id": "ff5ec271-7138-46d0-8ca1-f5f57790e5bd", "type": "patron", "active": true, "barcode": "283946101101999", "metadata": {"createdDate": "2021-03-09T10:22:35.997", "updatedDate": "2021-03-09T10:22:35.997+00:00"}, "personal": {"email": "cleora@welch-group.fj", "phone": "791.175.1120 x3467", "lastName": "McLaughlin", "addresses": [{"city": "Ketchikan", "region": "AA", "countryId": "US", "postalCode": "16810-6866", "addressLine1": "47544 Nikolaus Lodge Apt. 505", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Britney", "middleName": "Ronny", "dateOfBirth": "1980-04-10T00:00:00.000+00:00", "mobilePhone": "229-537-5748 x8269", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "cruz", "createdDate": "2021-03-09T10:22:36.045+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:36.045+00:00", "enrollmentDate": "2015-08-17T00:00:00.000+00:00", "expirationDate": "2020-01-26T00:00:00.000+00:00"} 2021-03-09 10:22:35.997 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 21ce4a36-4d3a-4a9d-98be-d40852799d9b {"id": "21ce4a36-4d3a-4a9d-98be-d40852799d9b", "type": "patron", "active": true, "barcode": "999144799982250", "metadata": {"createdDate": "2021-03-09T10:22:36.133", "updatedDate": "2021-03-09T10:22:36.133+00:00"}, "personal": {"email": "minnie@pouros-inc.no", "phone": "556-405-5640 x75121", "lastName": "Johnston", "addresses": [{"city": "Laguna Niguel", "region": "VT", "countryId": "US", "postalCode": "56190", "addressLine1": "69609 Jaskolski Road #095", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Trevor", "middleName": "Marc", "dateOfBirth": "1970-04-10T00:00:00.000+00:00", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "gayle", "createdDate": "2021-03-09T10:22:36.184+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:36.184+00:00", "enrollmentDate": "2016-04-22T00:00:00.000+00:00", "expirationDate": "2021-01-29T00:00:00.000+00:00"} 2021-03-09 10:22:36.133 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e ade18246-c529-497f-bd4c-2c3f85e995ad {"id": "ade18246-c529-497f-bd4c-2c3f85e995ad", "type": "patron", "active": false, "barcode": "483240769538888", "metadata": {"createdDate": "2021-03-09T10:22:36.276", "updatedDate": "2021-03-09T10:22:36.276+00:00"}, "personal": {"email": "herman@herzog-kutch.co", "phone": "1-771-591-0526 x95088", "lastName": "Prosacco", "addresses": [{"city": "Santa Ana", "region": "IA", "countryId": "US", "postalCode": "06351-7599", "addressLine1": "74391 Sawayn Wall Apt. 191", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Ardella", "middleName": "Lonzo", "dateOfBirth": "2012-01-14T00:00:00.000+00:00", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "alessandro", "createdDate": "2021-03-09T10:22:36.331+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:36.331+00:00", "enrollmentDate": "2016-05-25T00:00:00.000+00:00", "expirationDate": "2019-11-29T00:00:00.000+00:00"} 2021-03-09 10:22:36.276 \N ad0bc554-d5bc-463c-85d1-5562127ae91b c0af9380-d277-4820-a607-15a2d9c50ba6 {"id": "c0af9380-d277-4820-a607-15a2d9c50ba6", "type": "patron", "active": true, "barcode": "631966751550162", "metadata": {"createdDate": "2021-03-09T10:22:36.417", "updatedDate": "2021-03-09T10:22:36.417+00:00"}, "personal": {"email": "rodger@ledner-jaskolski.vn", "phone": "(273)655-1780 x0849", "lastName": "Schaden", "addresses": [{"city": "City of Industry", "region": "AK", "countryId": "US", "postalCode": "62796", "addressLine1": "35081 Konopelski Port", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Paris", "middleName": "Rosetta", "dateOfBirth": "1997-08-20T00:00:00.000+00:00", "mobilePhone": "529-349-8873", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "clair", "createdDate": "2021-03-09T10:22:36.465+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:36.465+00:00", "enrollmentDate": "2018-11-23T00:00:00.000+00:00", "expirationDate": "2020-07-05T00:00:00.000+00:00"} 2021-03-09 10:22:36.417 \N ad0bc554-d5bc-463c-85d1-5562127ae91b e1bcf784-484c-42ca-b502-cf2f2e57eca3 {"id": "e1bcf784-484c-42ca-b502-cf2f2e57eca3", "type": "patron", "active": true, "barcode": "697453301644884", "metadata": {"createdDate": "2021-03-09T10:22:36.546", "updatedDate": "2021-03-09T10:22:36.546+00:00"}, "personal": {"email": "sheldon@carroll-white-and-cole.gs", "phone": "511.344.0651", "lastName": "Waters", "addresses": [{"city": "Kent", "region": "DE", "countryId": "US", "postalCode": "00503", "addressLine1": "18812 McGlynn Mews", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Golda", "middleName": "Jonathon", "dateOfBirth": "1975-08-16T00:00:00.000+00:00", "mobilePhone": "(018)215-2615 x4522", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "enid", "createdDate": "2021-03-09T10:22:36.592+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:36.592+00:00", "enrollmentDate": "2016-12-01T00:00:00.000+00:00", "expirationDate": "2019-04-29T00:00:00.000+00:00"} 2021-03-09 10:22:36.546 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 6f4111a4-8b6f-4008-9b95-ecd31db69234 {"id": "6f4111a4-8b6f-4008-9b95-ecd31db69234", "type": "patron", "active": true, "barcode": "272166777013790", "metadata": {"createdDate": "2021-03-09T10:22:36.693", "updatedDate": "2021-03-09T10:22:36.693+00:00"}, "personal": {"email": "frank@lowe-inc.cf", "phone": "384-546-7881", "lastName": "Rodriguez", "addresses": [{"city": "Nogales", "region": "AP", "countryId": "US", "postalCode": "54478-9282", "addressLine1": "95698 Funk Underpass Apt. 931", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Velda", "middleName": "Cora", "dateOfBirth": "1985-04-10T00:00:00.000+00:00", "mobilePhone": "217-047-4021 x5204", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "kris", "createdDate": "2021-03-09T10:22:36.752+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:36.752+00:00", "enrollmentDate": "2015-12-28T00:00:00.000+00:00", "expirationDate": "2020-07-17T00:00:00.000+00:00"} 2021-03-09 10:22:36.693 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e c51cf0e7-ea33-4638-a54c-afffc75a680b {"id": "c51cf0e7-ea33-4638-a54c-afffc75a680b", "type": "patron", "active": true, "barcode": "539526509780788", "metadata": {"createdDate": "2021-03-09T10:22:36.844", "updatedDate": "2021-03-09T10:22:36.844+00:00"}, "personal": {"email": "treva@wisoky-steuber-and-heidenreich.gi", "phone": "109.591.5479 x92261", "lastName": "Cole", "addresses": [{"city": "Athens", "region": "CO", "countryId": "US", "postalCode": "96737-5586", "addressLine1": "54893 Jadon Passage", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Evalyn", "middleName": "Randy", "dateOfBirth": "1955-02-23T00:00:00.000+00:00", "mobilePhone": "545-526-9295 x950", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "justen", "createdDate": "2021-03-09T10:22:36.889+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:36.889+00:00", "enrollmentDate": "2016-01-05T00:00:00.000+00:00", "expirationDate": "2019-10-04T00:00:00.000+00:00"} 2021-03-09 10:22:36.844 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 969e6710-309e-41bd-ba35-2b97faec30b7 {"id": "969e6710-309e-41bd-ba35-2b97faec30b7", "type": "patron", "active": true, "barcode": "161752342500221", "metadata": {"createdDate": "2021-03-09T10:22:36.979", "updatedDate": "2021-03-09T10:22:36.979+00:00"}, "personal": {"email": "kavon@effertz-inc.ai", "phone": "103-227-0227 x6093", "lastName": "Schaden", "addresses": [{"city": "Muncie", "region": "AE", "countryId": "US", "postalCode": "64899", "addressLine1": "47515 O'Hara Dam", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Rosemary", "dateOfBirth": "1950-05-14T00:00:00.000+00:00", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "marielle", "createdDate": "2021-03-09T10:22:37.027+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:37.027+00:00", "enrollmentDate": "2017-03-24T00:00:00.000+00:00", "expirationDate": "2020-06-26T00:00:00.000+00:00"} 2021-03-09 10:22:36.979 \N 3684a786-6671-4268-8ed0-9db82ebca60b 5bec815c-72b9-452f-ac19-bc2793c94537 {"id": "5bec815c-72b9-452f-ac19-bc2793c94537", "type": "patron", "active": true, "barcode": "592809378069983", "metadata": {"createdDate": "2021-03-09T10:22:37.113", "updatedDate": "2021-03-09T10:22:37.113+00:00"}, "personal": {"email": "colin@koepp-group.pw", "phone": "144.849.2114 x782", "lastName": "Denesik", "addresses": [{"city": "Orange", "region": "NE", "countryId": "US", "postalCode": "54470-7692", "addressLine1": "37804 Ole River", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Domenick", "middleName": "Maybelle", "dateOfBirth": "1958-04-01T00:00:00.000+00:00", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "kathryn", "createdDate": "2021-03-09T10:22:37.163+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:37.163+00:00", "enrollmentDate": "2018-09-03T00:00:00.000+00:00", "expirationDate": "2019-12-24T00:00:00.000+00:00"} 2021-03-09 10:22:37.113 \N 503a81cd-6c26-400f-b620-14c08943697c daa9cf25-f333-447b-b577-158d6ce944a5 {"id": "daa9cf25-f333-447b-b577-158d6ce944a5", "type": "patron", "active": false, "barcode": "390509548381370", "metadata": {"createdDate": "2021-03-09T10:22:37.262", "updatedDate": "2021-03-09T10:22:37.262+00:00"}, "personal": {"email": "doyle@kshlerin-and-sons.bd", "phone": "(255)481-4812 x339", "lastName": "Monahan", "addresses": [{"city": "San Juan Capistrano", "region": "KY", "countryId": "US", "postalCode": "75567-7031", "addressLine1": "65622 Larson Island", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Rafaela", "dateOfBirth": "1994-05-04T00:00:00.000+00:00", "mobilePhone": "574.315.1782", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "agnes", "createdDate": "2021-03-09T10:22:37.318+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:37.318+00:00", "enrollmentDate": "2018-10-08T00:00:00.000+00:00", "expirationDate": "2019-12-22T00:00:00.000+00:00"} 2021-03-09 10:22:37.262 \N 503a81cd-6c26-400f-b620-14c08943697c 0e64adb1-36ba-4cdd-9909-047612b7629e {"id": "0e64adb1-36ba-4cdd-9909-047612b7629e", "type": "patron", "active": true, "barcode": "298923774959572", "metadata": {"createdDate": "2021-03-09T10:22:37.439", "updatedDate": "2021-03-09T10:22:37.439+00:00"}, "personal": {"email": "colby@kessler-inc.py", "phone": "606.758.4172 x7292", "lastName": "Koepp", "addresses": [{"city": "Burbank", "region": "MN", "countryId": "US", "postalCode": "04214", "addressLine1": "25818 Hansen Drives", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Phyllis", "dateOfBirth": "1960-10-20T00:00:00.000+00:00", "mobilePhone": "1-034-282-8488", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "cecil", "createdDate": "2021-03-09T10:22:37.525+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:37.525+00:00", "enrollmentDate": "2018-09-30T00:00:00.000+00:00", "expirationDate": "2020-02-25T00:00:00.000+00:00"} 2021-03-09 10:22:37.439 \N ad0bc554-d5bc-463c-85d1-5562127ae91b 01b9d72b-9aab-4efd-97a4-d03c1667bf0d {"id": "01b9d72b-9aab-4efd-97a4-d03c1667bf0d", "type": "patron", "active": true, "barcode": "908122635201927", "metadata": {"createdDate": "2021-03-09T10:22:37.614", "updatedDate": "2021-03-09T10:22:37.614+00:00"}, "personal": {"email": "dahlia@koch-hayes.it", "phone": "725-093-3336", "lastName": "Denesik", "addresses": [{"city": "Laguna Woods", "region": "VA", "countryId": "US", "postalCode": "80182", "addressLine1": "04686 Heaney River Apt. 311", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Katherine", "dateOfBirth": "1952-11-19T00:00:00.000+00:00", "mobilePhone": "118-374-7507", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "rick", "createdDate": "2021-03-09T10:22:37.662+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:37.662+00:00", "enrollmentDate": "2017-04-27T00:00:00.000+00:00", "expirationDate": "2019-05-09T00:00:00.000+00:00"} 2021-03-09 10:22:37.614 \N ad0bc554-d5bc-463c-85d1-5562127ae91b 8853c9a2-cae2-4b5e-84ce-2b39bb809e5b {"id": "8853c9a2-cae2-4b5e-84ce-2b39bb809e5b", "type": "patron", "active": true, "barcode": "766444609393133", "metadata": {"createdDate": "2021-03-09T10:22:37.751", "updatedDate": "2021-03-09T10:22:37.751+00:00"}, "personal": {"email": "viva@becker-okon-and-heaney.tn.us", "phone": "1-464-785-9853 x31976", "lastName": "Weissnat", "addresses": [{"city": "Murray", "region": "DC", "countryId": "US", "postalCode": "45933", "addressLine1": "09633 Meaghan Junctions Suite 977", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Maddison", "dateOfBirth": "2014-04-06T00:00:00.000+00:00", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "jalyn", "createdDate": "2021-03-09T10:22:37.803+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:37.803+00:00", "enrollmentDate": "2016-12-30T00:00:00.000+00:00", "expirationDate": "2021-01-17T00:00:00.000+00:00"} 2021-03-09 10:22:37.751 \N 3684a786-6671-4268-8ed0-9db82ebca60b 589ee8e5-4fe4-4ab3-8a58-441cebea454a {"id": "589ee8e5-4fe4-4ab3-8a58-441cebea454a", "type": "patron", "active": true, "barcode": "358963200950757", "metadata": {"createdDate": "2021-03-09T10:22:37.9", "updatedDate": "2021-03-09T10:22:37.900+00:00"}, "personal": {"email": "rae@brekke-nolan.wa.us", "phone": "713-608-0783", "lastName": "Medhurst", "addresses": [{"city": "Temecula", "region": "MS", "countryId": "US", "postalCode": "90469", "addressLine1": "29346 Elroy Stravenue Suite 579", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Marisa", "dateOfBirth": "1949-06-23T00:00:00.000+00:00", "mobilePhone": "1-172-048-6774", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "electa", "createdDate": "2021-03-09T10:22:37.947+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:37.947+00:00", "enrollmentDate": "2016-05-08T00:00:00.000+00:00", "expirationDate": "2020-02-13T00:00:00.000+00:00"} 2021-03-09 10:22:37.9 \N 503a81cd-6c26-400f-b620-14c08943697c 0414af69-f89c-40f2-bea9-a9b5d0a179d4 {"id": "0414af69-f89c-40f2-bea9-a9b5d0a179d4", "type": "patron", "active": false, "barcode": "625911315350411", "metadata": {"createdDate": "2021-03-09T10:22:38.037", "updatedDate": "2021-03-09T10:22:38.037+00:00"}, "personal": {"email": "enola@stroman-bergstrom.mt", "phone": "1-990-063-2196 x96861", "lastName": "Batz", "addresses": [{"city": "Springdale", "region": "NH", "countryId": "US", "postalCode": "34690-3080", "addressLine1": "85035 Madonna Plaza", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Kristy", "middleName": "Andreanne", "dateOfBirth": "1987-02-06T00:00:00.000+00:00", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "diana", "createdDate": "2021-03-09T10:22:38.082+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:38.082+00:00", "enrollmentDate": "2018-09-14T00:00:00.000+00:00", "expirationDate": "2020-10-28T00:00:00.000+00:00"} 2021-03-09 10:22:38.037 \N 503a81cd-6c26-400f-b620-14c08943697c 71f4828b-8ad5-4ae6-bfa6-45ecfe3f6c3c {"id": "71f4828b-8ad5-4ae6-bfa6-45ecfe3f6c3c", "type": "patron", "active": true, "barcode": "299308637069604", "metadata": {"createdDate": "2021-03-09T10:22:38.169", "updatedDate": "2021-03-09T10:22:38.169+00:00"}, "personal": {"email": "elda@koelpin-brakus.pa", "phone": "633-148-6027", "lastName": "Dickinson", "addresses": [{"city": "Valencia", "region": "AP", "countryId": "US", "postalCode": "64993-0455", "addressLine1": "77935 Lucy Lakes", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Esta", "dateOfBirth": "1949-03-26T00:00:00.000+00:00", "mobilePhone": "818.624.6615 x295", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "khalid", "createdDate": "2021-03-09T10:22:38.225+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:38.225+00:00", "enrollmentDate": "2018-03-31T00:00:00.000+00:00", "expirationDate": "2019-10-06T00:00:00.000+00:00"} 2021-03-09 10:22:38.169 \N ad0bc554-d5bc-463c-85d1-5562127ae91b 3b464026-79e7-450a-a441-0e1d4f8ebf99 {"id": "3b464026-79e7-450a-a441-0e1d4f8ebf99", "type": "patron", "active": false, "barcode": "703844689213557", "metadata": {"createdDate": "2021-03-09T10:22:38.32", "updatedDate": "2021-03-09T10:22:38.320+00:00"}, "personal": {"email": "maureen@schulist-hills.lr", "phone": "347-425-5060", "lastName": "Denesik", "addresses": [{"city": "Valencia", "region": "KY", "countryId": "US", "postalCode": "98413", "addressLine1": "68530 Batz Plains Apt. 693", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Rachelle", "dateOfBirth": "1984-10-13T00:00:00.000+00:00", "mobilePhone": "276.402.9040", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "reid", "createdDate": "2021-03-09T10:22:38.369+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:38.369+00:00", "enrollmentDate": "2019-02-26T00:00:00.000+00:00", "expirationDate": "2021-01-12T00:00:00.000+00:00"} 2021-03-09 10:22:38.32 \N 3684a786-6671-4268-8ed0-9db82ebca60b 55e09c25-0a7b-4df8-8bde-a8964b57ef40 {"id": "55e09c25-0a7b-4df8-8bde-a8964b57ef40", "type": "patron", "active": true, "barcode": "30162199862882", "metadata": {"createdDate": "2021-03-09T10:22:38.46", "updatedDate": "2021-03-09T10:22:38.460+00:00"}, "personal": {"email": "godfrey@koepp-lueilwitz.sa", "phone": "342.564.6025 x871", "lastName": "Renner", "addresses": [{"city": "Claremont", "region": "FM", "countryId": "US", "postalCode": "51331-4265", "addressLine1": "75833 Arvid Path", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Verda", "middleName": "Audreanne", "dateOfBirth": "1991-08-11T00:00:00.000+00:00", "mobilePhone": "1-370-615-8878", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "rory", "createdDate": "2021-03-09T10:22:38.509+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:38.509+00:00", "enrollmentDate": "2017-04-29T00:00:00.000+00:00", "expirationDate": "2019-08-23T00:00:00.000+00:00"} 2021-03-09 10:22:38.46 \N ad0bc554-d5bc-463c-85d1-5562127ae91b 48a3115d-d476-4582-b6a8-55c09eed7ec7 {"id": "48a3115d-d476-4582-b6a8-55c09eed7ec7", "type": "patron", "active": true, "barcode": "680311830975018", "metadata": {"createdDate": "2021-03-09T10:22:38.598", "updatedDate": "2021-03-09T10:22:38.598+00:00"}, "personal": {"email": "brown@hagenes-and-sons.dc.us", "phone": "(823)734-9749 x557", "lastName": "Auer", "addresses": [{"city": "Phoenix", "region": "IN", "countryId": "US", "postalCode": "84510-9997", "addressLine1": "76841 Nicklaus Meadow Suite 588", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Luther", "dateOfBirth": "2008-04-17T00:00:00.000+00:00", "mobilePhone": "(109)368-8088", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "graham", "createdDate": "2021-03-09T10:22:38.648+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:38.648+00:00", "enrollmentDate": "2016-08-31T00:00:00.000+00:00", "expirationDate": "2021-01-01T00:00:00.000+00:00"} 2021-03-09 10:22:38.598 \N 3684a786-6671-4268-8ed0-9db82ebca60b a8a11126-40b9-45f0-aa6e-9408e57c4b47 {"id": "a8a11126-40b9-45f0-aa6e-9408e57c4b47", "type": "patron", "active": false, "barcode": "124718599753229", "metadata": {"createdDate": "2021-03-09T10:22:38.743", "updatedDate": "2021-03-09T10:22:38.743+00:00"}, "personal": {"email": "aurelie@ankunding-kiehn.us", "phone": "(555)883-2274 x6584", "lastName": "Hagenes", "addresses": [{"city": "Rolling Hills", "region": "OR", "countryId": "US", "postalCode": "92431-5673", "addressLine1": "20601 Angelo Ridges", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Alyce", "middleName": "Lamar", "dateOfBirth": "1990-05-16T00:00:00.000+00:00", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "erna", "createdDate": "2021-03-09T10:22:38.796+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:38.796+00:00", "enrollmentDate": "2017-06-08T00:00:00.000+00:00", "expirationDate": "2020-07-06T00:00:00.000+00:00"} 2021-03-09 10:22:38.743 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e d1f69036-a316-41e4-89c1-77f77a3c7f1d {"id": "d1f69036-a316-41e4-89c1-77f77a3c7f1d", "type": "patron", "active": true, "barcode": "765942690370788", "metadata": {"createdDate": "2021-03-09T10:22:38.896", "updatedDate": "2021-03-09T10:22:38.896+00:00"}, "personal": {"email": "florence@konopelski-ortiz-and-gerhold.ck", "phone": "1-726-697-5332", "lastName": "Rohan", "addresses": [{"city": "Westlake Village", "region": "PR", "countryId": "US", "postalCode": "26800", "addressLine1": "22729 Juanita Islands", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Clarabelle", "middleName": "Fanny", "dateOfBirth": "1998-12-08T00:00:00.000+00:00", "mobilePhone": "1-792-096-9819 x42761", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "cecile", "createdDate": "2021-03-09T10:22:38.944+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:38.944+00:00", "enrollmentDate": "2016-09-08T00:00:00.000+00:00", "expirationDate": "2020-04-05T00:00:00.000+00:00"} 2021-03-09 10:22:38.896 \N 503a81cd-6c26-400f-b620-14c08943697c 87c329f1-2220-4a8a-b750-ded39bbe9769 {"id": "87c329f1-2220-4a8a-b750-ded39bbe9769", "type": "patron", "active": false, "barcode": "787181529957397", "metadata": {"createdDate": "2021-03-09T10:22:39.028", "updatedDate": "2021-03-09T10:22:39.028+00:00"}, "personal": {"email": "leanne@conroy-llc.cs", "phone": "1-028-589-2513", "lastName": "Prohaska", "addresses": [{"city": "Sahuarita", "region": "ID", "countryId": "US", "postalCode": "95607-8768", "addressLine1": "31168 Esther Roads", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Tamia", "middleName": "Kieran", "dateOfBirth": "1961-01-30T00:00:00.000+00:00", "mobilePhone": "1-154-117-4466", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "leopold", "createdDate": "2021-03-09T10:22:39.075+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:39.075+00:00", "enrollmentDate": "2018-09-30T00:00:00.000+00:00", "expirationDate": "2020-09-15T00:00:00.000+00:00"} 2021-03-09 10:22:39.028 \N 3684a786-6671-4268-8ed0-9db82ebca60b 46ed7160-426b-460e-91b3-ab22a7d6fc26 {"id": "46ed7160-426b-460e-91b3-ab22a7d6fc26", "type": "patron", "active": false, "barcode": "105883620407176", "metadata": {"createdDate": "2021-03-09T10:22:39.16", "updatedDate": "2021-03-09T10:22:39.160+00:00"}, "personal": {"email": "jammie@reinger-llc.ro", "phone": "889-770-7010 x23396", "lastName": "Lowe", "addresses": [{"city": "Anaheim", "region": "MN", "countryId": "US", "postalCode": "05317", "addressLine1": "31994 Stehr Trace", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Elbert", "middleName": "Barrett", "dateOfBirth": "1947-08-15T00:00:00.000+00:00", "mobilePhone": "(229)092-7872 x3677", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "reece", "createdDate": "2021-03-09T10:22:39.211+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:39.211+00:00", "enrollmentDate": "2015-05-25T00:00:00.000+00:00", "expirationDate": "2020-04-04T00:00:00.000+00:00"} 2021-03-09 10:22:39.16 \N 3684a786-6671-4268-8ed0-9db82ebca60b a7fb2289-b4dc-4deb-8fd3-86cf8e2b7db6 {"id": "a7fb2289-b4dc-4deb-8fd3-86cf8e2b7db6", "type": "patron", "active": true, "barcode": "628023765111244", "metadata": {"createdDate": "2021-03-09T10:22:39.303", "updatedDate": "2021-03-09T10:22:39.303+00:00"}, "personal": {"email": "lavon@fisher-haley-and-pfeffer.bh", "phone": "(449)471-3800", "lastName": "Shields", "addresses": [{"city": "Union City", "region": "AZ", "countryId": "US", "postalCode": "08287", "addressLine1": "85223 Mylene Pines", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Berta", "middleName": "Una", "dateOfBirth": "1992-08-27T00:00:00.000+00:00", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "dallas", "createdDate": "2021-03-09T10:22:39.346+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:39.346+00:00", "enrollmentDate": "2015-09-16T00:00:00.000+00:00", "expirationDate": "2021-03-07T00:00:00.000+00:00"} 2021-03-09 10:22:39.303 \N ad0bc554-d5bc-463c-85d1-5562127ae91b d80b45eb-5dc0-4635-b539-dac722cc3a50 {"id": "d80b45eb-5dc0-4635-b539-dac722cc3a50", "type": "patron", "active": false, "barcode": "245336184453709", "metadata": {"createdDate": "2021-03-09T10:22:39.44", "updatedDate": "2021-03-09T10:22:39.440+00:00"}, "personal": {"email": "roel@prosacco-cummings-and-wintheiser.cu", "phone": "875-073-2082", "lastName": "Klocko", "addresses": [{"city": "Newport Beach", "region": "WA", "countryId": "US", "postalCode": "83730-6123", "addressLine1": "21601 Suite J", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Cielo", "middleName": "Chyna", "dateOfBirth": "1985-04-20T00:00:00.000+00:00", "mobilePhone": "1-097-166-7870", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "maxime", "createdDate": "2021-03-09T10:22:39.487+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:39.487+00:00", "enrollmentDate": "2017-09-29T00:00:00.000+00:00", "expirationDate": "2021-01-08T00:00:00.000+00:00"} 2021-03-09 10:22:39.44 \N 3684a786-6671-4268-8ed0-9db82ebca60b be2e9bdb-9884-4fe9-87d0-ba91e8425412 {"id": "be2e9bdb-9884-4fe9-87d0-ba91e8425412", "type": "patron", "active": false, "barcode": "730185433611190", "metadata": {"createdDate": "2021-03-09T10:22:39.572", "updatedDate": "2021-03-09T10:22:39.572+00:00"}, "personal": {"email": "drake@kohler-okeefe-and-dooley.au", "phone": "852.559.2262 x8243", "lastName": "Crona", "addresses": [{"city": "Cleveland", "region": "KS", "countryId": "US", "postalCode": "92540-2841", "addressLine1": "37578 Apartment W", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Annabel", "middleName": "Bobby", "dateOfBirth": "2016-05-09T00:00:00.000+00:00", "mobilePhone": "298-868-8224 x5729", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "leonie", "createdDate": "2021-03-09T10:22:39.618+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:39.618+00:00", "enrollmentDate": "2018-10-20T00:00:00.000+00:00", "expirationDate": "2019-11-07T00:00:00.000+00:00"} 2021-03-09 10:22:39.572 \N ad0bc554-d5bc-463c-85d1-5562127ae91b 0cce8c30-0a0d-4ebb-a107-cf47ad35eafb {"id": "0cce8c30-0a0d-4ebb-a107-cf47ad35eafb", "type": "patron", "active": true, "barcode": "610028044962529", "metadata": {"createdDate": "2021-03-09T10:22:39.713", "updatedDate": "2021-03-09T10:22:39.713+00:00"}, "personal": {"email": "valentin@murphy-llc.az.us", "phone": "666-338-9978 x09222", "lastName": "McKenzie", "addresses": [{"city": "Paramount", "region": "MA", "countryId": "US", "postalCode": "19593-9691", "addressLine1": "02440 Department N", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Finn", "middleName": "Laney", "dateOfBirth": "1947-07-25T00:00:00.000+00:00", "mobilePhone": "1-564-133-0013", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "meredith", "createdDate": "2021-03-09T10:22:39.761+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:39.761+00:00", "enrollmentDate": "2017-07-29T00:00:00.000+00:00", "expirationDate": "2020-09-04T00:00:00.000+00:00"} 2021-03-09 10:22:39.713 \N 3684a786-6671-4268-8ed0-9db82ebca60b 78284bd0-cdf1-4fc9-a404-739388b41cc7 {"id": "78284bd0-cdf1-4fc9-a404-739388b41cc7", "type": "patron", "active": false, "barcode": "67306877178072", "metadata": {"createdDate": "2021-03-09T10:22:39.849", "updatedDate": "2021-03-09T10:22:39.849+00:00"}, "personal": {"email": "rhoda@ratke-inc.tx.us", "phone": "(789)045-8884", "lastName": "Von", "addresses": [{"city": "Placentia", "region": "PR", "countryId": "US", "postalCode": "21669", "addressLine1": "97658 Abigayle Inlet Apt. 717", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Niko", "middleName": "Ottilie", "dateOfBirth": "2005-11-26T00:00:00.000+00:00", "mobilePhone": "916-301-8093 x63648", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "greyson", "createdDate": "2021-03-09T10:22:39.903+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:39.903+00:00", "enrollmentDate": "2015-03-17T00:00:00.000+00:00", "expirationDate": "2019-10-17T00:00:00.000+00:00"} 2021-03-09 10:22:39.849 \N 503a81cd-6c26-400f-b620-14c08943697c 0db6912a-40c0-41db-8d15-be05ff851f96 {"id": "0db6912a-40c0-41db-8d15-be05ff851f96", "type": "patron", "active": true, "barcode": "669055896442806", "metadata": {"createdDate": "2021-03-09T10:22:39.988", "updatedDate": "2021-03-09T10:22:39.988+00:00"}, "personal": {"email": "adrianna@keeling-and-sons.je", "phone": "550-927-1692", "lastName": "Schneider", "addresses": [{"city": "Ventura", "region": "MP", "countryId": "US", "postalCode": "14348-9333", "addressLine1": "81682 Maggio Fields", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Deion", "middleName": "Paris", "dateOfBirth": "1990-07-02T00:00:00.000+00:00", "mobilePhone": "663-550-2837", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "norberto", "createdDate": "2021-03-09T10:22:40.034+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:40.034+00:00", "enrollmentDate": "2015-07-27T00:00:00.000+00:00", "expirationDate": "2019-07-07T00:00:00.000+00:00"} 2021-03-09 10:22:39.988 \N 3684a786-6671-4268-8ed0-9db82ebca60b 6f36265e-722a-490a-b436-806e63af2ea7 {"id": "6f36265e-722a-490a-b436-806e63af2ea7", "type": "patron", "active": true, "barcode": "693787594998493", "metadata": {"createdDate": "2021-03-09T10:22:40.128", "updatedDate": "2021-03-09T10:22:40.128+00:00"}, "personal": {"email": "luella@swift-hegmann-and-gutmann.aw", "phone": "(429)999-9252 x5844", "lastName": "Denesik", "addresses": [{"city": "Owensboro", "region": "CT", "countryId": "US", "postalCode": "96912", "addressLine1": "25431 Gilbert Cape", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Doug", "middleName": "Alf", "dateOfBirth": "2009-08-15T00:00:00.000+00:00", "mobilePhone": "(830)648-7529 x95254", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "kayla", "createdDate": "2021-03-09T10:22:40.182+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:40.182+00:00", "enrollmentDate": "2016-06-04T00:00:00.000+00:00", "expirationDate": "2021-01-09T00:00:00.000+00:00"} 2021-03-09 10:22:40.128 \N 3684a786-6671-4268-8ed0-9db82ebca60b e13b3d8d-71ff-49bd-9ea1-4ad7da8b1b8e {"id": "e13b3d8d-71ff-49bd-9ea1-4ad7da8b1b8e", "type": "patron", "active": false, "barcode": "323519789821983", "metadata": {"createdDate": "2021-03-09T10:22:40.271", "updatedDate": "2021-03-09T10:22:40.271+00:00"}, "personal": {"email": "paolo@kuphal-mayer.sa", "phone": "796.290.1933 x001", "lastName": "Denesik", "addresses": [{"city": "Canton", "region": "SC", "countryId": "US", "postalCode": "14872-4524", "addressLine1": "49631 Towne Burg", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Tom", "middleName": "Marlin", "dateOfBirth": "1981-07-19T00:00:00.000+00:00", "mobilePhone": "1-241-003-0625", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "maximillian", "createdDate": "2021-03-09T10:22:40.317+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:40.317+00:00", "enrollmentDate": "2016-10-05T00:00:00.000+00:00", "expirationDate": "2021-01-12T00:00:00.000+00:00"} 2021-03-09 10:22:40.271 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e eaeffd06-57d3-488c-bd1b-c39d5c62e97d {"id": "eaeffd06-57d3-488c-bd1b-c39d5c62e97d", "type": "patron", "active": false, "barcode": "144807605573799", "metadata": {"createdDate": "2021-03-09T10:22:40.403", "updatedDate": "2021-03-09T10:22:40.403+00:00"}, "personal": {"email": "michele@deckow-king.ms", "phone": "703-029-4731", "lastName": "Marvin", "addresses": [{"city": "Texarkana", "region": "RI", "countryId": "US", "postalCode": "47584-7824", "addressLine1": "35418 Wyman Bypass Suite 869", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Jabari", "middleName": "Tressie", "dateOfBirth": "1974-05-14T00:00:00.000+00:00", "mobilePhone": "(715)134-0584 x399", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "brant", "createdDate": "2021-03-09T10:22:40.453+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:40.453+00:00", "enrollmentDate": "2015-03-23T00:00:00.000+00:00", "expirationDate": "2020-06-03T00:00:00.000+00:00"} 2021-03-09 10:22:40.403 \N ad0bc554-d5bc-463c-85d1-5562127ae91b 5a57f974-ea09-4c87-b7f5-e4144dde6128 {"id": "5a57f974-ea09-4c87-b7f5-e4144dde6128", "type": "patron", "active": true, "barcode": "60913707627598", "metadata": {"createdDate": "2021-03-09T10:22:40.532", "updatedDate": "2021-03-09T10:22:40.532+00:00"}, "personal": {"email": "amely@deckow-bradtke-and-dibbert.ng", "phone": "(989)847-2344 x04637", "lastName": "Harvey", "addresses": [{"city": "San Clemente", "region": "CA", "countryId": "US", "postalCode": "08266", "addressLine1": "12461 Nader Cape", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Deja", "middleName": "Arianna", "dateOfBirth": "1974-03-20T00:00:00.000+00:00", "mobilePhone": "411.858.2748 x273", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "america", "createdDate": "2021-03-09T10:22:40.580+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:40.580+00:00", "enrollmentDate": "2018-12-19T00:00:00.000+00:00", "expirationDate": "2019-07-10T00:00:00.000+00:00"} 2021-03-09 10:22:40.532 \N 3684a786-6671-4268-8ed0-9db82ebca60b 21c08ac3-c287-4a21-b966-e263504aa773 {"id": "21c08ac3-c287-4a21-b966-e263504aa773", "type": "patron", "active": false, "barcode": "742593606461600", "metadata": {"createdDate": "2021-03-09T10:22:40.659", "updatedDate": "2021-03-09T10:22:40.659+00:00"}, "personal": {"email": "jane@schroeder-parisian.mo.us", "phone": "1-046-299-1320 x85524", "lastName": "Hickle", "addresses": [{"city": "Cincinnati", "region": "VI", "countryId": "US", "postalCode": "89005-2089", "addressLine1": "88318 Adolf Manors", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Carter", "dateOfBirth": "1965-09-26T00:00:00.000+00:00", "mobilePhone": "1-557-802-5587", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "weldon", "createdDate": "2021-03-09T10:22:40.709+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:40.709+00:00", "enrollmentDate": "2017-12-19T00:00:00.000+00:00", "expirationDate": "2019-05-03T00:00:00.000+00:00"} 2021-03-09 10:22:40.659 \N 503a81cd-6c26-400f-b620-14c08943697c 78c51a90-e64f-49ce-8d28-e246a49c7f63 {"id": "78c51a90-e64f-49ce-8d28-e246a49c7f63", "type": "patron", "active": true, "barcode": "859134060767498", "metadata": {"createdDate": "2021-03-09T10:22:40.791", "updatedDate": "2021-03-09T10:22:40.791+00:00"}, "personal": {"email": "seth@wisozk-schoen-and-goyette.fm", "phone": "097-669-3362", "lastName": "Grady", "addresses": [{"city": "Danville", "region": "CA", "countryId": "US", "postalCode": "40453-4083", "addressLine1": "46663 Jayden Lock Suite 531", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Sister", "middleName": "Garret", "dateOfBirth": "1961-07-31T00:00:00.000+00:00", "mobilePhone": "478-608-4031", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "elyssa", "createdDate": "2021-03-09T10:22:40.838+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:40.838+00:00", "enrollmentDate": "2018-11-25T00:00:00.000+00:00", "expirationDate": "2020-03-22T00:00:00.000+00:00"} 2021-03-09 10:22:40.791 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 2ee07dc7-835f-4a33-a783-db2ae3f1238c {"id": "2ee07dc7-835f-4a33-a783-db2ae3f1238c", "type": "patron", "active": true, "barcode": "479599371032787", "metadata": {"createdDate": "2021-03-09T10:22:40.92", "updatedDate": "2021-03-09T10:22:40.920+00:00"}, "personal": {"email": "ansley@marvin-bayer.md", "phone": "1-244-042-5537", "lastName": "Maggio", "addresses": [{"city": "Fremont", "region": "NM", "countryId": "US", "postalCode": "68232-5069", "addressLine1": "32054 Buford Club", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Marian", "middleName": "Newton", "dateOfBirth": "2004-07-15T00:00:00.000+00:00", "mobilePhone": "(678)932-6845", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "karolann", "createdDate": "2021-03-09T10:22:40.971+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:40.971+00:00", "enrollmentDate": "2018-03-20T00:00:00.000+00:00", "expirationDate": "2020-08-07T00:00:00.000+00:00"} 2021-03-09 10:22:40.92 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e f6d2c74c-3181-4c25-9a21-1b1f4c30765f {"id": "f6d2c74c-3181-4c25-9a21-1b1f4c30765f", "type": "patron", "active": true, "barcode": "399977029012177", "metadata": {"createdDate": "2021-03-09T10:22:41.063", "updatedDate": "2021-03-09T10:22:41.063+00:00"}, "personal": {"email": "garland@davis-terry-and-heller.nv.us", "phone": "1-408-201-7701", "lastName": "Kris", "addresses": [{"city": "San Rafael", "region": "CT", "countryId": "US", "postalCode": "05491", "addressLine1": "84018 Abbott Plains Suite 555", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Cleo", "middleName": "Hunter", "dateOfBirth": "1964-12-01T00:00:00.000+00:00", "mobilePhone": "1-271-300-6536 x6459", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "kian", "createdDate": "2021-03-09T10:22:41.116+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:41.116+00:00", "enrollmentDate": "2017-01-01T00:00:00.000+00:00", "expirationDate": "2019-05-20T00:00:00.000+00:00"} 2021-03-09 10:22:41.063 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e a601f1f2-88a4-465a-850e-8f50c28ce7d9 {"id": "a601f1f2-88a4-465a-850e-8f50c28ce7d9", "type": "patron", "active": true, "barcode": "211832121841851", "metadata": {"createdDate": "2021-03-09T10:22:41.217", "updatedDate": "2021-03-09T10:22:41.217+00:00"}, "personal": {"email": "sonya@rowe-inc.lb", "phone": "(157)362-6113", "lastName": "Wisoky", "addresses": [{"city": "Los Angeles", "region": "UT", "countryId": "US", "postalCode": "12864-5134", "addressLine1": "63785 Hailee Ports #591", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Augustus", "middleName": "Myrna", "dateOfBirth": "2009-04-13T00:00:00.000+00:00", "mobilePhone": "197.782.5049 x93190", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "reed", "createdDate": "2021-03-09T10:22:41.262+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:41.262+00:00", "enrollmentDate": "2016-02-04T00:00:00.000+00:00", "expirationDate": "2019-10-27T00:00:00.000+00:00"} 2021-03-09 10:22:41.217 \N ad0bc554-d5bc-463c-85d1-5562127ae91b c2a2f428-ab5f-46ce-b3ed-7d0ab39a0096 {"id": "c2a2f428-ab5f-46ce-b3ed-7d0ab39a0096", "type": "patron", "active": false, "barcode": "746279801800330", "metadata": {"createdDate": "2021-03-09T10:22:41.351", "updatedDate": "2021-03-09T10:22:41.351+00:00"}, "personal": {"email": "christelle@weimann-and-sons.mt", "phone": "124-896-4381", "lastName": "Bergnaum", "addresses": [{"city": "Mesa", "region": "MS", "countryId": "US", "postalCode": "92945", "addressLine1": "31257 Nitzsche Run", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Ines", "middleName": "Terrill", "dateOfBirth": "1962-11-21T00:00:00.000+00:00", "mobilePhone": "(459)612-0145", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "nathaniel", "createdDate": "2021-03-09T10:22:41.396+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:41.396+00:00", "enrollmentDate": "2016-10-29T00:00:00.000+00:00", "expirationDate": "2019-10-29T00:00:00.000+00:00"} 2021-03-09 10:22:41.351 \N ad0bc554-d5bc-463c-85d1-5562127ae91b 52e47672-d456-40b6-9f2d-6597d3e9f942 {"id": "52e47672-d456-40b6-9f2d-6597d3e9f942", "type": "patron", "active": true, "barcode": "851974014604984", "metadata": {"createdDate": "2021-03-09T10:22:41.483", "updatedDate": "2021-03-09T10:22:41.483+00:00"}, "personal": {"email": "thalia@anderson-group.ia.us", "phone": "284-427-9792 x6351", "lastName": "Kulas", "addresses": [{"city": "Vallejo", "region": "PA", "countryId": "US", "postalCode": "37380-7984", "addressLine1": "68407 Vickie Causeway", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Leslie", "middleName": "Rowan", "dateOfBirth": "1955-09-30T00:00:00.000+00:00", "mobilePhone": "1-930-357-4670 x9072", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "angelita", "createdDate": "2021-03-09T10:22:41.527+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:41.527+00:00", "enrollmentDate": "2019-01-06T00:00:00.000+00:00", "expirationDate": "2019-10-04T00:00:00.000+00:00"} 2021-03-09 10:22:41.483 \N 3684a786-6671-4268-8ed0-9db82ebca60b 11dd4634-e4a9-45f0-9683-fa4d7a8f9728 {"id": "11dd4634-e4a9-45f0-9683-fa4d7a8f9728", "type": "patron", "active": true, "barcode": "668365498167", "metadata": {"createdDate": "2021-03-09T10:22:41.609", "updatedDate": "2021-03-09T10:22:41.609+00:00"}, "personal": {"email": "amelia@schultz-nitzsche.cc", "phone": "1-935-908-1543 x576", "lastName": "Denesik", "addresses": [{"city": "Tucson", "region": "AE", "countryId": "US", "postalCode": "51117", "addressLine1": "30190 McKenzie Mission Apt. 317", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Vickie", "middleName": "Ronny", "dateOfBirth": "2002-01-31T00:00:00.000+00:00", "mobilePhone": "(189)086-8007", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "isac", "createdDate": "2021-03-09T10:22:41.656+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:41.656+00:00", "enrollmentDate": "2015-12-06T00:00:00.000+00:00", "expirationDate": "2020-06-29T00:00:00.000+00:00"} 2021-03-09 10:22:41.609 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 71f28723-784e-4292-b794-af4ffca9178e {"id": "71f28723-784e-4292-b794-af4ffca9178e", "type": "patron", "active": true, "barcode": "345265690950199", "metadata": {"createdDate": "2021-03-09T10:22:41.746", "updatedDate": "2021-03-09T10:22:41.746+00:00"}, "personal": {"email": "johan@kirlin-inc.gs", "phone": "(348)233-4100", "lastName": "Schimmel", "addresses": [{"city": "Gary", "region": "PA", "countryId": "US", "postalCode": "44468", "addressLine1": "98801 Brando Divide Apt. 054", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Bertha", "middleName": "Darrin", "dateOfBirth": "1975-08-08T00:00:00.000+00:00", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "genesis", "createdDate": "2021-03-09T10:22:41.791+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:41.791+00:00", "enrollmentDate": "2018-08-12T00:00:00.000+00:00", "expirationDate": "2019-06-12T00:00:00.000+00:00"} 2021-03-09 10:22:41.746 \N 503a81cd-6c26-400f-b620-14c08943697c d6c40971-39a6-4977-9d27-e83e731f51de {"id": "d6c40971-39a6-4977-9d27-e83e731f51de", "type": "patron", "active": false, "barcode": "717722273660250", "metadata": {"createdDate": "2021-03-09T10:22:41.873", "updatedDate": "2021-03-09T10:22:41.873+00:00"}, "personal": {"email": "trystan@trantow-fay.gn", "phone": "(105)531-3599 x5896", "lastName": "Sporer", "addresses": [{"city": "South Bend", "region": "WI", "countryId": "US", "postalCode": "39061", "addressLine1": "65765 King Plains Suite 292", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Freeman", "middleName": "Luigi", "dateOfBirth": "1951-10-15T00:00:00.000+00:00", "mobilePhone": "942-958-7463 x1835", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "rollin", "createdDate": "2021-03-09T10:22:41.920+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:41.920+00:00", "enrollmentDate": "2017-06-18T00:00:00.000+00:00", "expirationDate": "2020-09-14T00:00:00.000+00:00"} 2021-03-09 10:22:41.873 \N ad0bc554-d5bc-463c-85d1-5562127ae91b 95a99d37-66b5-4b8d-a598-ab36618f9aac {"id": "95a99d37-66b5-4b8d-a598-ab36618f9aac", "type": "patron", "active": false, "barcode": "541826290691304", "metadata": {"createdDate": "2021-03-09T10:22:42.002", "updatedDate": "2021-03-09T10:22:42.002+00:00"}, "personal": {"email": "eulah@veum-streich-and-mueller.ks.us", "phone": "607-908-8821 x9401", "lastName": "Okuneva", "addresses": [{"city": "Phoenix", "region": "AA", "countryId": "US", "postalCode": "51100-7820", "addressLine1": "13878 Hayes Overpass Apt. 535", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Stefan", "dateOfBirth": "1976-12-07T00:00:00.000+00:00", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "marilie", "createdDate": "2021-03-09T10:22:42.051+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:42.051+00:00", "enrollmentDate": "2017-04-03T00:00:00.000+00:00", "expirationDate": "2020-08-31T00:00:00.000+00:00"} 2021-03-09 10:22:42.002 \N ad0bc554-d5bc-463c-85d1-5562127ae91b e63273e7-48f5-4c43-ab4e-1751ecacaa21 {"id": "e63273e7-48f5-4c43-ab4e-1751ecacaa21", "type": "patron", "active": true, "barcode": "721408137069396", "metadata": {"createdDate": "2021-03-09T10:22:42.131", "updatedDate": "2021-03-09T10:22:42.131+00:00"}, "personal": {"email": "lilla@wiza-llc.ie", "phone": "1-893-787-1494 x537", "lastName": "Jast", "addresses": [{"city": "Eureka", "region": "OR", "countryId": "US", "postalCode": "58267-5504", "addressLine1": "00120 Suite G", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Perry", "middleName": "Drake", "dateOfBirth": "2004-03-19T00:00:00.000+00:00", "mobilePhone": "545.437.3834", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "jaylon", "createdDate": "2021-03-09T10:22:42.180+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:42.180+00:00", "enrollmentDate": "2018-08-11T00:00:00.000+00:00", "expirationDate": "2020-06-29T00:00:00.000+00:00"} 2021-03-09 10:22:42.131 \N 3684a786-6671-4268-8ed0-9db82ebca60b 2c2e383d-7369-4aff-afb7-eb3db4cb71a0 {"id": "2c2e383d-7369-4aff-afb7-eb3db4cb71a0", "type": "patron", "active": true, "barcode": "994512400886741", "metadata": {"createdDate": "2021-03-09T10:22:42.265", "updatedDate": "2021-03-09T10:22:42.265+00:00"}, "personal": {"email": "alf@barrows-group.cs", "phone": "164.749.2268", "lastName": "Green", "addresses": [{"city": "El Monte", "region": "OH", "countryId": "US", "postalCode": "50898-2829", "addressLine1": "58547 McKenzie Course #387", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Brandon", "middleName": "Alysha", "dateOfBirth": "1981-01-30T00:00:00.000+00:00", "mobilePhone": "(516)576-5921 x386", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "oral", "createdDate": "2021-03-09T10:22:42.310+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:42.310+00:00", "enrollmentDate": "2016-09-13T00:00:00.000+00:00", "expirationDate": "2019-10-03T00:00:00.000+00:00"} 2021-03-09 10:22:42.265 \N 3684a786-6671-4268-8ed0-9db82ebca60b ec97250b-1ded-46a7-a8f6-a474f8fe622d {"id": "ec97250b-1ded-46a7-a8f6-a474f8fe622d", "type": "patron", "active": false, "barcode": "1211791319224", "metadata": {"createdDate": "2021-03-09T10:22:42.391", "updatedDate": "2021-03-09T10:22:42.391+00:00"}, "personal": {"email": "jabari@beier-collier-and-adams.wa.us", "phone": "(773)007-7770 x6445", "lastName": "Sporer", "addresses": [{"city": "Chino", "region": "GU", "countryId": "US", "postalCode": "20605-2722", "addressLine1": "75437 Richard Ways", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Dewayne", "middleName": "Waino", "dateOfBirth": "2006-04-03T00:00:00.000+00:00", "mobilePhone": "154-575-8361 x118", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "kolby", "createdDate": "2021-03-09T10:22:42.438+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:42.438+00:00", "enrollmentDate": "2016-06-21T00:00:00.000+00:00", "expirationDate": "2019-09-27T00:00:00.000+00:00"} 2021-03-09 10:22:42.391 \N 503a81cd-6c26-400f-b620-14c08943697c 9e87bfea-2d31-4cc3-9cef-9e1e67553243 {"id": "9e87bfea-2d31-4cc3-9cef-9e1e67553243", "type": "patron", "active": false, "barcode": "649452403745915", "metadata": {"createdDate": "2021-03-09T10:22:42.516", "updatedDate": "2021-03-09T10:22:42.516+00:00"}, "personal": {"email": "muriel@jaskolski-hand-and-shields.so", "phone": "094-136-9018 x0864", "lastName": "Miller", "addresses": [{"city": "South Pasadena", "region": "AS", "countryId": "US", "postalCode": "51600", "addressLine1": "80986 Colin Meadows", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Lolita", "middleName": "Dayton", "dateOfBirth": "1950-10-14T00:00:00.000+00:00", "mobilePhone": "(124)569-8555 x042", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "devan", "createdDate": "2021-03-09T10:22:42.567+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:42.567+00:00", "enrollmentDate": "2018-09-22T00:00:00.000+00:00", "expirationDate": "2020-06-13T00:00:00.000+00:00"} 2021-03-09 10:22:42.516 \N ad0bc554-d5bc-463c-85d1-5562127ae91b 17b26a4a-e481-4b86-8949-5ef6570eb622 {"id": "17b26a4a-e481-4b86-8949-5ef6570eb622", "type": "patron", "active": true, "barcode": "400008433192770", "metadata": {"createdDate": "2021-03-09T10:22:42.648", "updatedDate": "2021-03-09T10:22:42.648+00:00"}, "personal": {"email": "mariam@nitzsche-pacocha.fk", "phone": "877-400-5507", "lastName": "Predovic", "addresses": [{"city": "Compton", "region": "MH", "countryId": "US", "postalCode": "56306", "addressLine1": "72634 Valentin Forges", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Earline", "middleName": "Wilburn", "dateOfBirth": "1974-10-29T00:00:00.000+00:00", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "earnestine", "createdDate": "2021-03-09T10:22:42.697+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:42.697+00:00", "enrollmentDate": "2015-06-02T00:00:00.000+00:00", "expirationDate": "2019-04-24T00:00:00.000+00:00"} 2021-03-09 10:22:42.648 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 342971e4-43af-44c3-a8c3-478a97cc94bc {"id": "342971e4-43af-44c3-a8c3-478a97cc94bc", "type": "patron", "active": true, "barcode": "517661950521777", "metadata": {"createdDate": "2021-03-09T10:22:42.782", "updatedDate": "2021-03-09T10:22:42.782+00:00"}, "personal": {"email": "jonatan@fisher-champlin.ad", "phone": "779-451-7076 x0833", "lastName": "Cronin", "addresses": [{"city": "Decatur", "region": "MN", "countryId": "US", "postalCode": "45916", "addressLine1": "12520 Side", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Claud", "middleName": "Ilene", "dateOfBirth": "2005-05-14T00:00:00.000+00:00", "mobilePhone": "1-279-039-5608 x75852", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "mathew", "createdDate": "2021-03-09T10:22:42.824+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:42.824+00:00", "enrollmentDate": "2015-08-17T00:00:00.000+00:00", "expirationDate": "2020-04-16T00:00:00.000+00:00"} 2021-03-09 10:22:42.782 \N 3684a786-6671-4268-8ed0-9db82ebca60b c8edf675-9323-4410-9d14-0727e038dad0 {"id": "c8edf675-9323-4410-9d14-0727e038dad0", "type": "patron", "active": true, "barcode": "636177113671031", "metadata": {"createdDate": "2021-03-09T10:22:42.914", "updatedDate": "2021-03-09T10:22:42.914+00:00"}, "personal": {"email": "chaim@mohr-bayer.ye", "phone": "517-968-1902", "lastName": "Wiegand", "addresses": [{"city": "Kent", "region": "IL", "countryId": "US", "postalCode": "59451", "addressLine1": "81579 Schmeler Pass #287", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Carmel", "dateOfBirth": "2001-08-23T00:00:00.000+00:00", "mobilePhone": "(704)961-5376 x05171", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "aidan", "createdDate": "2021-03-09T10:22:42.960+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:42.960+00:00", "enrollmentDate": "2017-07-24T00:00:00.000+00:00", "expirationDate": "2020-08-09T00:00:00.000+00:00"} 2021-03-09 10:22:42.914 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 3ada4a0c-e554-4749-8809-fee35fe2c7ad {"id": "3ada4a0c-e554-4749-8809-fee35fe2c7ad", "type": "patron", "active": false, "barcode": "438581524422918", "metadata": {"createdDate": "2021-03-09T10:22:43.053", "updatedDate": "2021-03-09T10:22:43.053+00:00"}, "personal": {"email": "alexandre@baumbach-nicolas.lk", "phone": "634.000.0665", "lastName": "Walker", "addresses": [{"city": "South El Monte", "region": "OH", "countryId": "US", "postalCode": "62000-7845", "addressLine1": "47564 Floor 35", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Adaline", "middleName": "Marilou", "dateOfBirth": "1961-10-03T00:00:00.000+00:00", "mobilePhone": "1-290-020-8785", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "juston", "createdDate": "2021-03-09T10:22:43.104+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:43.104+00:00", "enrollmentDate": "2018-10-25T00:00:00.000+00:00", "expirationDate": "2020-04-20T00:00:00.000+00:00"} 2021-03-09 10:22:43.053 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 423d5beb-3196-449e-aacb-9595d6321950 {"id": "423d5beb-3196-449e-aacb-9595d6321950", "type": "patron", "active": true, "barcode": "941346984284265", "metadata": {"createdDate": "2021-03-09T10:22:43.206", "updatedDate": "2021-03-09T10:22:43.206+00:00"}, "personal": {"email": "al@ohara-sawayn-and-dicki.gr", "phone": "452.902.4336", "lastName": "Kuhlman", "addresses": [{"city": "Villa Park", "region": "UT", "countryId": "US", "postalCode": "34334-6218", "addressLine1": "65964 Lebsack Parkway Apt. 989", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Clemens", "dateOfBirth": "1980-07-27T00:00:00.000+00:00", "mobilePhone": "129.695.7732", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "lenora", "createdDate": "2021-03-09T10:22:43.260+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:43.260+00:00", "enrollmentDate": "2018-01-21T00:00:00.000+00:00", "expirationDate": "2019-10-16T00:00:00.000+00:00"} 2021-03-09 10:22:43.206 \N 3684a786-6671-4268-8ed0-9db82ebca60b ea2ef01f-d732-4119-90ab-ee6df447548f {"id": "ea2ef01f-d732-4119-90ab-ee6df447548f", "type": "patron", "active": false, "barcode": "402540302712985", "metadata": {"createdDate": "2021-03-09T10:22:43.351", "updatedDate": "2021-03-09T10:22:43.351+00:00"}, "personal": {"email": "mafalda@bins-group.ua", "phone": "337-905-1068", "lastName": "Renner", "addresses": [{"city": "San Gabriel", "region": "TX", "countryId": "US", "postalCode": "60982-0464", "addressLine1": "81925 Ortiz Isle Apt. 171", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Raquel", "middleName": "Agustina", "dateOfBirth": "1951-02-02T00:00:00.000+00:00", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "darren", "createdDate": "2021-03-09T10:22:43.402+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:43.402+00:00", "enrollmentDate": "2016-09-08T00:00:00.000+00:00", "expirationDate": "2019-12-11T00:00:00.000+00:00"} 2021-03-09 10:22:43.351 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 67002fdf-b2f6-4e1f-bab8-d750efb0558f {"id": "67002fdf-b2f6-4e1f-bab8-d750efb0558f", "type": "patron", "active": true, "barcode": "483089374189503", "metadata": {"createdDate": "2021-03-09T10:22:43.487", "updatedDate": "2021-03-09T10:22:43.487+00:00"}, "personal": {"email": "albin@nikolaus-stark.wi.us", "phone": "1-920-170-2124 x8035", "lastName": "Oberbrunner", "addresses": [{"city": "Bessemer", "region": "NC", "countryId": "US", "postalCode": "08879", "addressLine1": "80037 Krajcik Dale", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Frederik", "middleName": "Amelia", "dateOfBirth": "2013-03-26T00:00:00.000+00:00", "mobilePhone": "1-622-373-5253", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "jaclyn", "createdDate": "2021-03-09T10:22:43.531+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:43.531+00:00", "enrollmentDate": "2017-02-24T00:00:00.000+00:00", "expirationDate": "2019-06-13T00:00:00.000+00:00"} 2021-03-09 10:22:43.487 \N ad0bc554-d5bc-463c-85d1-5562127ae91b beaffbac-e56d-4e32-a653-b631945f060c {"id": "beaffbac-e56d-4e32-a653-b631945f060c", "type": "patron", "active": true, "barcode": "412224905087885", "metadata": {"createdDate": "2021-03-09T10:22:43.606", "updatedDate": "2021-03-09T10:22:43.606+00:00"}, "personal": {"email": "destinee@luettgen-group.mg", "phone": "(741)575-5116 x51130", "lastName": "Denesik", "addresses": [{"city": "City of Industry", "region": "OK", "countryId": "US", "postalCode": "22672", "addressLine1": "43219 Zoila Trail Suite 009", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Lewis", "dateOfBirth": "1971-07-01T00:00:00.000+00:00", "mobilePhone": "1-429-481-8803", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "torrey", "createdDate": "2021-03-09T10:22:43.652+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:43.652+00:00", "enrollmentDate": "2015-04-05T00:00:00.000+00:00", "expirationDate": "2020-10-15T00:00:00.000+00:00"} 2021-03-09 10:22:43.606 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 5c4910af-508f-49f5-b2c2-f856ffd7f2aa {"id": "5c4910af-508f-49f5-b2c2-f856ffd7f2aa", "type": "patron", "active": true, "barcode": "687475934082478", "metadata": {"createdDate": "2021-03-09T10:22:43.746", "updatedDate": "2021-03-09T10:22:43.746+00:00"}, "personal": {"email": "angelica@kiehn-sporer-and-hammes.tg", "phone": "(663)844-6130 x99387", "lastName": "Heller", "addresses": [{"city": "San Diego", "region": "TN", "countryId": "US", "postalCode": "00113", "addressLine1": "69312 Keyshawn Drive Suite 999", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Breana", "dateOfBirth": "1975-01-27T00:00:00.000+00:00", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "minerva", "createdDate": "2021-03-09T10:22:43.792+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:43.792+00:00", "enrollmentDate": "2018-08-22T00:00:00.000+00:00", "expirationDate": "2020-10-17T00:00:00.000+00:00"} 2021-03-09 10:22:43.746 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 89066e1d-0691-4514-ae37-586cf746d3f4 {"id": "89066e1d-0691-4514-ae37-586cf746d3f4", "type": "patron", "active": false, "barcode": "385280395079359", "metadata": {"createdDate": "2021-03-09T10:22:43.879", "updatedDate": "2021-03-09T10:22:43.879+00:00"}, "personal": {"email": "dexter@schultz-group.ac.uk", "phone": "689-392-1784 x52973", "lastName": "Johns", "addresses": [{"city": "Fontana", "region": "AZ", "countryId": "US", "postalCode": "26940-9843", "addressLine1": "01103 Karianne Isle", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Sammy", "middleName": "Bartholome", "dateOfBirth": "1954-03-19T00:00:00.000+00:00", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "kamryn", "createdDate": "2021-03-09T10:22:43.929+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:43.929+00:00", "enrollmentDate": "2019-01-29T00:00:00.000+00:00", "expirationDate": "2020-10-27T00:00:00.000+00:00"} 2021-03-09 10:22:43.879 \N 3684a786-6671-4268-8ed0-9db82ebca60b 169aeb77-32f6-4f60-a2c0-db791b96e411 {"id": "169aeb77-32f6-4f60-a2c0-db791b96e411", "type": "patron", "active": true, "barcode": "539221276746598", "metadata": {"createdDate": "2021-03-09T10:22:44.014", "updatedDate": "2021-03-09T10:22:44.014+00:00"}, "personal": {"email": "kali@howell-bashirian-and-hackett.ls", "phone": "659.537.4986 x36724", "lastName": "Luettgen", "addresses": [{"city": "Hollister", "region": "CO", "countryId": "US", "postalCode": "48294-3956", "addressLine1": "17104 Pacocha View Suite 898", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Ignatius", "middleName": "Tyrel", "dateOfBirth": "2002-10-06T00:00:00.000+00:00", "mobilePhone": "(095)836-6474 x038", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "gay", "createdDate": "2021-03-09T10:22:44.062+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:44.062+00:00", "enrollmentDate": "2018-07-12T00:00:00.000+00:00", "expirationDate": "2019-10-12T00:00:00.000+00:00"} 2021-03-09 10:22:44.014 \N 503a81cd-6c26-400f-b620-14c08943697c 44e640f4-3e0e-4bb4-92af-6263108893b2 {"id": "44e640f4-3e0e-4bb4-92af-6263108893b2", "type": "patron", "active": true, "barcode": "156558322290802", "metadata": {"createdDate": "2021-03-09T10:22:44.144", "updatedDate": "2021-03-09T10:22:44.144+00:00"}, "personal": {"email": "sophia@braun-cronin.lu", "phone": "(863)008-2309 x5116", "lastName": "Sawayn", "addresses": [{"city": "Richmond", "region": "NM", "countryId": "US", "postalCode": "44195-6726", "addressLine1": "57337 Jeffry Hollow #516", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Berneice", "middleName": "Damion", "dateOfBirth": "1953-02-13T00:00:00.000+00:00", "mobilePhone": "871-680-0312", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "keanu", "createdDate": "2021-03-09T10:22:44.205+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:44.205+00:00", "enrollmentDate": "2015-04-28T00:00:00.000+00:00", "expirationDate": "2019-08-03T00:00:00.000+00:00"} 2021-03-09 10:22:44.144 \N ad0bc554-d5bc-463c-85d1-5562127ae91b e923bd61-bf27-42a9-8293-ed7738c24bca {"id": "e923bd61-bf27-42a9-8293-ed7738c24bca", "type": "patron", "active": true, "barcode": "846895020101659", "metadata": {"createdDate": "2021-03-09T10:22:44.297", "updatedDate": "2021-03-09T10:22:44.297+00:00"}, "personal": {"email": "micah@cassin-cormier.ag", "phone": "422-093-8502", "lastName": "Schroeder", "addresses": [{"city": "San Diego", "region": "VI", "countryId": "US", "postalCode": "14875-1870", "addressLine1": "41390 Floor 5", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Natalia", "middleName": "Juston", "dateOfBirth": "1991-04-04T00:00:00.000+00:00", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "travis", "createdDate": "2021-03-09T10:22:44.350+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:44.350+00:00", "enrollmentDate": "2016-08-08T00:00:00.000+00:00", "expirationDate": "2020-09-23T00:00:00.000+00:00"} 2021-03-09 10:22:44.297 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 16757efe-86ac-40bb-bdd6-fafee02463c7 {"id": "16757efe-86ac-40bb-bdd6-fafee02463c7", "type": "patron", "active": true, "barcode": "509575459201574", "metadata": {"createdDate": "2021-03-09T10:22:44.438", "updatedDate": "2021-03-09T10:22:44.438+00:00"}, "personal": {"email": "myah@boyle-will.um", "phone": "682.593.8052", "lastName": "Borer", "addresses": [{"city": "Valdez", "region": "AL", "countryId": "US", "postalCode": "69583-4512", "addressLine1": "65435 Retta Spur", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Dagmar", "dateOfBirth": "1996-03-07T00:00:00.000+00:00", "mobilePhone": "111.047.0312", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "zena", "createdDate": "2021-03-09T10:22:44.487+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:44.487+00:00", "enrollmentDate": "2018-04-13T00:00:00.000+00:00", "expirationDate": "2020-01-11T00:00:00.000+00:00"} 2021-03-09 10:22:44.438 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 0a246f61-d85f-42b6-8dcc-48d25a46690b {"id": "0a246f61-d85f-42b6-8dcc-48d25a46690b", "type": "patron", "active": true, "barcode": "855788620413307", "metadata": {"createdDate": "2021-03-09T10:22:44.584", "updatedDate": "2021-03-09T10:22:44.584+00:00"}, "personal": {"email": "sasha@langworth-group.nm.us", "phone": "759.749.2624 x5524", "lastName": "Schamberger", "addresses": [{"city": "La Palma", "region": "NH", "countryId": "US", "postalCode": "93045", "addressLine1": "86731 Conroy Walk #607", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Roxane", "middleName": "Suzanne", "dateOfBirth": "1976-01-10T00:00:00.000+00:00", "mobilePhone": "(826)811-6221 x8553", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "maxine", "createdDate": "2021-03-09T10:22:44.635+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:44.635+00:00", "enrollmentDate": "2015-04-08T00:00:00.000+00:00", "expirationDate": "2019-08-20T00:00:00.000+00:00"} 2021-03-09 10:22:44.584 \N 3684a786-6671-4268-8ed0-9db82ebca60b a49cefad-7447-4f2f-9004-de32e7a6cc53 {"id": "a49cefad-7447-4f2f-9004-de32e7a6cc53", "type": "patron", "active": true, "barcode": "194710970216014", "metadata": {"createdDate": "2021-03-09T10:22:44.731", "updatedDate": "2021-03-09T10:22:44.731+00:00"}, "personal": {"email": "maximo@bergnaum-lueilwitz.vn", "phone": "383-132-9117", "lastName": "Becker", "addresses": [{"city": "Hamilton", "region": "OH", "countryId": "US", "postalCode": "55026", "addressLine1": "00940 Rear", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Jazmin", "dateOfBirth": "1984-08-10T00:00:00.000+00:00", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "cedrick", "createdDate": "2021-03-09T10:22:44.778+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:44.778+00:00", "enrollmentDate": "2016-11-13T00:00:00.000+00:00", "expirationDate": "2020-03-26T00:00:00.000+00:00"} 2021-03-09 10:22:44.731 \N 503a81cd-6c26-400f-b620-14c08943697c eb7696da-a2c3-4166-8aba-757c42556d1e {"id": "eb7696da-a2c3-4166-8aba-757c42556d1e", "type": "patron", "active": false, "barcode": "526093411956626", "metadata": {"createdDate": "2021-03-09T10:22:44.863", "updatedDate": "2021-03-09T10:22:44.863+00:00"}, "personal": {"email": "vella@hilll-gibson.il", "phone": "968.266.5840 x35577", "lastName": "Dicki", "addresses": [{"city": "San Clemente", "region": "SD", "countryId": "US", "postalCode": "19365", "addressLine1": "37769 Penthouse", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Josie", "middleName": "Keagan", "dateOfBirth": "2007-12-01T00:00:00.000+00:00", "mobilePhone": "408-562-5448 x1964", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "piper", "createdDate": "2021-03-09T10:22:44.918+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:44.918+00:00", "enrollmentDate": "2015-10-15T00:00:00.000+00:00", "expirationDate": "2020-01-12T00:00:00.000+00:00"} 2021-03-09 10:22:44.863 \N 3684a786-6671-4268-8ed0-9db82ebca60b cc0685f2-6ac2-4840-bb67-1493c14968c5 {"id": "cc0685f2-6ac2-4840-bb67-1493c14968c5", "type": "patron", "active": true, "barcode": "555048703191946", "metadata": {"createdDate": "2021-03-09T10:22:45.004", "updatedDate": "2021-03-09T10:22:45.004+00:00"}, "personal": {"email": "davin@braun-schiller.es", "phone": "1-253-594-8460", "lastName": "Denesik", "addresses": [{"city": "Oakland", "region": "WI", "countryId": "US", "postalCode": "09139", "addressLine1": "18098 Floor 27", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Geovanni", "middleName": "Columbus", "dateOfBirth": "2012-03-21T00:00:00.000+00:00", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "elinor", "createdDate": "2021-03-09T10:22:45.049+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:45.049+00:00", "enrollmentDate": "2018-03-28T00:00:00.000+00:00", "expirationDate": "2020-05-09T00:00:00.000+00:00"} 2021-03-09 10:22:45.004 \N 503a81cd-6c26-400f-b620-14c08943697c b617c5f2-78d4-4c7e-bf0c-d21392a8c39f {"id": "b617c5f2-78d4-4c7e-bf0c-d21392a8c39f", "type": "patron", "active": true, "barcode": "240905641162392", "metadata": {"createdDate": "2021-03-09T10:22:45.137", "updatedDate": "2021-03-09T10:22:45.137+00:00"}, "personal": {"email": "lorenza@renner-witting-and-purdy.lu", "phone": "333-400-5145 x657", "lastName": "Grant", "addresses": [{"city": "Parma", "region": "NY", "countryId": "US", "postalCode": "88257-0564", "addressLine1": "93542 Gusikowski Knolls", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Erik", "middleName": "Danielle", "dateOfBirth": "1962-12-24T00:00:00.000+00:00", "mobilePhone": "931.111.2135", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "megane", "createdDate": "2021-03-09T10:22:45.189+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:45.189+00:00", "enrollmentDate": "2015-04-23T00:00:00.000+00:00", "expirationDate": "2019-06-19T00:00:00.000+00:00"} 2021-03-09 10:22:45.137 \N ad0bc554-d5bc-463c-85d1-5562127ae91b f0dc6802-450f-459a-9dc6-209086375b7f {"id": "f0dc6802-450f-459a-9dc6-209086375b7f", "type": "patron", "active": false, "barcode": "597630410875716", "metadata": {"createdDate": "2021-03-09T10:22:45.278", "updatedDate": "2021-03-09T10:22:45.278+00:00"}, "personal": {"email": "ferne@gerlach-leannon-and-kshlerin.pa", "phone": "612-002-5040", "lastName": "Kub", "addresses": [{"city": "Santa Fe Springs", "region": "MH", "countryId": "US", "postalCode": "55403-6597", "addressLine1": "29848 Doyle Views Apt. 133", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Marques", "middleName": "Sofia", "dateOfBirth": "1955-03-04T00:00:00.000+00:00", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "alejandra", "createdDate": "2021-03-09T10:22:45.327+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:45.327+00:00", "enrollmentDate": "2018-10-06T00:00:00.000+00:00", "expirationDate": "2020-12-18T00:00:00.000+00:00"} 2021-03-09 10:22:45.278 \N ad0bc554-d5bc-463c-85d1-5562127ae91b d3409c88-7e3f-497a-b94c-69e85e23b45c {"id": "d3409c88-7e3f-497a-b94c-69e85e23b45c", "type": "patron", "active": false, "barcode": "78472785852447", "metadata": {"createdDate": "2021-03-09T10:22:45.416", "updatedDate": "2021-03-09T10:22:45.416+00:00"}, "personal": {"email": "paris@schimmel-inc.vu", "phone": "1-231-053-1512", "lastName": "Ruecker", "addresses": [{"city": "Homer", "region": "WV", "countryId": "US", "postalCode": "17408", "addressLine1": "55482 Bernier Springs", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Kacey", "middleName": "Aiyana", "dateOfBirth": "2012-10-23T00:00:00.000+00:00", "mobilePhone": "(783)669-7471", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "jaleel", "createdDate": "2021-03-09T10:22:45.464+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:45.464+00:00", "enrollmentDate": "2017-09-21T00:00:00.000+00:00", "expirationDate": "2020-08-03T00:00:00.000+00:00"} 2021-03-09 10:22:45.416 \N 3684a786-6671-4268-8ed0-9db82ebca60b b3e39715-0659-4776-9d40-abe655408d84 {"id": "b3e39715-0659-4776-9d40-abe655408d84", "type": "patron", "active": false, "barcode": "13681445020477", "metadata": {"createdDate": "2021-03-09T10:22:45.544", "updatedDate": "2021-03-09T10:22:45.544+00:00"}, "personal": {"email": "parker@roberts-pfannerstill.rw", "phone": "234.278.5991 x3013", "lastName": "Hilll", "addresses": [{"city": "Rolling Hills Estates", "region": "MP", "countryId": "US", "postalCode": "96090-7276", "addressLine1": "70387 Waldo Springs #134", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Brian", "dateOfBirth": "1980-02-05T00:00:00.000+00:00", "mobilePhone": "1-632-761-5435", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "jacynthe", "createdDate": "2021-03-09T10:22:45.594+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:45.594+00:00", "enrollmentDate": "2016-08-25T00:00:00.000+00:00", "expirationDate": "2019-04-18T00:00:00.000+00:00"} 2021-03-09 10:22:45.544 \N 3684a786-6671-4268-8ed0-9db82ebca60b a56edfbe-087e-4f79-bd7e-d855fbe746e4 {"id": "a56edfbe-087e-4f79-bd7e-d855fbe746e4", "type": "patron", "active": true, "barcode": "745592013622964", "metadata": {"createdDate": "2021-03-09T10:22:45.684", "updatedDate": "2021-03-09T10:22:45.684+00:00"}, "personal": {"email": "keegan@mitchell-and-sons.bn", "phone": "988.861.6928 x221", "lastName": "Denesik", "addresses": [{"city": "Palo Alto", "region": "DC", "countryId": "US", "postalCode": "33047-5265", "addressLine1": "17807 Grayce Ridge #192", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Brook", "middleName": "Orland", "dateOfBirth": "1968-12-11T00:00:00.000+00:00", "mobilePhone": "(920)607-6501", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "ludie", "createdDate": "2021-03-09T10:22:45.757+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:45.757+00:00", "enrollmentDate": "2016-01-22T00:00:00.000+00:00", "expirationDate": "2019-04-14T00:00:00.000+00:00"} 2021-03-09 10:22:45.684 \N 503a81cd-6c26-400f-b620-14c08943697c a5a80ce1-c00d-4ede-ba44-912c1e093948 {"id": "a5a80ce1-c00d-4ede-ba44-912c1e093948", "type": "patron", "active": true, "barcode": "304779563863832", "metadata": {"createdDate": "2021-03-09T10:22:45.842", "updatedDate": "2021-03-09T10:22:45.842+00:00"}, "personal": {"email": "jess@hermiston-jaskolski.sb", "phone": "(939)563-4118 x80575", "lastName": "Wiegand", "addresses": [{"city": "Cerritos", "region": "AE", "countryId": "US", "postalCode": "46974-1078", "addressLine1": "33863 Building 99", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Devante", "middleName": "Clementina", "dateOfBirth": "1962-11-13T00:00:00.000+00:00", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "marcelina", "createdDate": "2021-03-09T10:22:45.896+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:45.896+00:00", "enrollmentDate": "2016-06-07T00:00:00.000+00:00", "expirationDate": "2019-08-09T00:00:00.000+00:00"} 2021-03-09 10:22:45.842 \N 503a81cd-6c26-400f-b620-14c08943697c 7dd96d33-6abf-4394-8768-647c76d79412 {"id": "7dd96d33-6abf-4394-8768-647c76d79412", "type": "patron", "active": false, "barcode": "390734993858352", "metadata": {"createdDate": "2021-03-09T10:22:45.979", "updatedDate": "2021-03-09T10:22:45.979+00:00"}, "personal": {"email": "gwendolyn@kub-johns.io", "phone": "1-700-688-9136", "lastName": "Nikolaus", "addresses": [{"city": "Simi Valley", "region": "NJ", "countryId": "US", "postalCode": "93650", "addressLine1": "09823 Blanche Cove Suite 257", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Bailey", "dateOfBirth": "1998-01-15T00:00:00.000+00:00", "mobilePhone": "(574)121-5378", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "napoleon", "createdDate": "2021-03-09T10:22:46.031+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:46.031+00:00", "enrollmentDate": "2018-08-10T00:00:00.000+00:00", "expirationDate": "2020-08-27T00:00:00.000+00:00"} 2021-03-09 10:22:45.979 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 2a823816-c059-4703-becf-0cc68a734189 {"id": "2a823816-c059-4703-becf-0cc68a734189", "type": "patron", "active": false, "barcode": "792502201400545", "metadata": {"createdDate": "2021-03-09T10:22:46.114", "updatedDate": "2021-03-09T10:22:46.114+00:00"}, "personal": {"email": "greta@fahey-emmerich-and-douglas.om", "phone": "1-061-750-8306 x5786", "lastName": "Kuhlman", "addresses": [{"city": "Chino", "region": "PW", "countryId": "US", "postalCode": "29470-5004", "addressLine1": "91432 Daugherty Extensions", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Leila", "middleName": "Ronaldo", "dateOfBirth": "1958-03-12T00:00:00.000+00:00", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "barney", "createdDate": "2021-03-09T10:22:46.162+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:46.162+00:00", "enrollmentDate": "2017-11-23T00:00:00.000+00:00", "expirationDate": "2020-03-27T00:00:00.000+00:00"} 2021-03-09 10:22:46.114 \N ad0bc554-d5bc-463c-85d1-5562127ae91b 7ff26639-c033-442a-8bf4-2e896b17fcf9 {"id": "7ff26639-c033-442a-8bf4-2e896b17fcf9", "type": "patron", "active": false, "barcode": "871239214404756", "metadata": {"createdDate": "2021-03-09T10:22:46.259", "updatedDate": "2021-03-09T10:22:46.259+00:00"}, "personal": {"email": "mayra@schmeler-llc.ge", "phone": "833-693-7297", "lastName": "Boyle", "addresses": [{"city": "Bakersfield", "region": "MP", "countryId": "US", "postalCode": "44897", "addressLine1": "02433 Mraz Roads Suite 089", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Andre", "middleName": "Payton", "dateOfBirth": "1989-12-12T00:00:00.000+00:00", "mobilePhone": "(785)279-5645 x1029", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "jordy", "createdDate": "2021-03-09T10:22:46.309+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:46.309+00:00", "enrollmentDate": "2015-06-12T00:00:00.000+00:00", "expirationDate": "2020-11-23T00:00:00.000+00:00"} 2021-03-09 10:22:46.259 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e fb5de3c8-5293-440e-8448-a688c3a7367c {"id": "fb5de3c8-5293-440e-8448-a688c3a7367c", "type": "patron", "active": false, "barcode": "565249317944644", "metadata": {"createdDate": "2021-03-09T10:22:46.391", "updatedDate": "2021-03-09T10:22:46.391+00:00"}, "personal": {"email": "margaret@donnelly-lindgren.at", "phone": "1-013-044-4658 x2248", "lastName": "Swift", "addresses": [{"city": "Lima", "region": "FM", "countryId": "US", "postalCode": "04713", "addressLine1": "34109 Bella Groves", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Ewell", "dateOfBirth": "1979-06-15T00:00:00.000+00:00", "mobilePhone": "(375)585-3955 x22596", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "edd", "createdDate": "2021-03-09T10:22:46.439+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:46.439+00:00", "enrollmentDate": "2018-09-13T00:00:00.000+00:00", "expirationDate": "2019-07-07T00:00:00.000+00:00"} 2021-03-09 10:22:46.391 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 32134c21-fae8-497e-b2d2-daa1ba421070 {"id": "32134c21-fae8-497e-b2d2-daa1ba421070", "type": "patron", "active": true, "barcode": "521835582761500", "metadata": {"createdDate": "2021-03-09T10:22:46.519", "updatedDate": "2021-03-09T10:22:46.519+00:00"}, "personal": {"email": "carissa@dickinson-schaefer.co.us", "phone": "776.759.0553 x1841", "lastName": "Luettgen", "addresses": [{"city": "Bessemer", "region": "WV", "countryId": "US", "postalCode": "31677-6381", "addressLine1": "82745 Floor 20", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Alena", "middleName": "Amanda", "dateOfBirth": "1984-08-08T00:00:00.000+00:00", "mobilePhone": "1-770-234-0787", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "logan", "createdDate": "2021-03-09T10:22:46.566+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:46.566+00:00", "enrollmentDate": "2015-12-27T00:00:00.000+00:00", "expirationDate": "2020-03-06T00:00:00.000+00:00"} 2021-03-09 10:22:46.519 \N 503a81cd-6c26-400f-b620-14c08943697c c6a1f097-1292-441c-a760-682279a7f94c {"id": "c6a1f097-1292-441c-a760-682279a7f94c", "type": "patron", "active": false, "barcode": "225841499591069", "metadata": {"createdDate": "2021-03-09T10:22:46.646", "updatedDate": "2021-03-09T10:22:46.646+00:00"}, "personal": {"email": "dariana@schowalter-jacobi.md", "phone": "1-470-776-6946 x086", "lastName": "Quitzon", "addresses": [{"city": "Hammond", "region": "KS", "countryId": "US", "postalCode": "32299-8293", "addressLine1": "93630 Jaren Lodge Apt. 500", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Trystan", "middleName": "Maria", "dateOfBirth": "1971-06-16T00:00:00.000+00:00", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "nathanial", "createdDate": "2021-03-09T10:22:46.696+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:46.696+00:00", "enrollmentDate": "2016-07-23T00:00:00.000+00:00", "expirationDate": "2021-03-06T00:00:00.000+00:00"} 2021-03-09 10:22:46.646 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 5dfffe75-267d-4133-b7bf-6d6daf26d5a4 {"id": "5dfffe75-267d-4133-b7bf-6d6daf26d5a4", "type": "patron", "active": true, "barcode": "804117383735512", "metadata": {"createdDate": "2021-03-09T10:22:46.784", "updatedDate": "2021-03-09T10:22:46.784+00:00"}, "personal": {"email": "woodrow@wehner-llc.io", "phone": "1-942-839-9561 x44076", "lastName": "Schroeder", "addresses": [{"city": "Norwalk", "region": "TX", "countryId": "US", "postalCode": "23212-2519", "addressLine1": "69187 Berta Center #150", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Marguerite", "dateOfBirth": "1969-03-07T00:00:00.000+00:00", "mobilePhone": "1-962-343-8680", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "osvaldo", "createdDate": "2021-03-09T10:22:46.830+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:46.830+00:00", "enrollmentDate": "2015-09-05T00:00:00.000+00:00", "expirationDate": "2019-05-15T00:00:00.000+00:00"} 2021-03-09 10:22:46.784 \N 3684a786-6671-4268-8ed0-9db82ebca60b 57db810d-d59c-4443-ab43-3542cfdf7905 {"id": "57db810d-d59c-4443-ab43-3542cfdf7905", "type": "patron", "active": true, "barcode": "503414023823857", "metadata": {"createdDate": "2021-03-09T10:22:46.91", "updatedDate": "2021-03-09T10:22:46.910+00:00"}, "personal": {"email": "warren@lind-llc.nu", "phone": "(480)987-5187 x678", "lastName": "Roob", "addresses": [{"city": "Eufaula", "region": "IL", "countryId": "US", "postalCode": "96395", "addressLine1": "16243 Austin Harbors #832", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Lowell", "middleName": "Elwyn", "dateOfBirth": "2003-10-22T00:00:00.000+00:00", "mobilePhone": "(434)191-5582", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "eleazar", "createdDate": "2021-03-09T10:22:46.954+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:46.954+00:00", "enrollmentDate": "2018-06-11T00:00:00.000+00:00", "expirationDate": "2019-10-19T00:00:00.000+00:00"} 2021-03-09 10:22:46.91 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 5e84b6a4-fde4-4099-ab54-c82c9041f685 {"id": "5e84b6a4-fde4-4099-ab54-c82c9041f685", "type": "patron", "active": false, "barcode": "88302230830809", "metadata": {"createdDate": "2021-03-09T10:22:47.038", "updatedDate": "2021-03-09T10:22:47.038+00:00"}, "personal": {"email": "bernardo@mccullough-king-and-dicki.my", "phone": "(689)820-4964 x026", "lastName": "Wiza", "addresses": [{"city": "Hidden Hills", "region": "CT", "countryId": "US", "postalCode": "66872-1125", "addressLine1": "04016 Office", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Madilyn", "middleName": "Robb", "dateOfBirth": "1964-01-18T00:00:00.000+00:00", "mobilePhone": "(317)720-4029", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "kenna", "createdDate": "2021-03-09T10:22:47.093+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:47.093+00:00", "enrollmentDate": "2018-12-22T00:00:00.000+00:00", "expirationDate": "2019-06-06T00:00:00.000+00:00"} 2021-03-09 10:22:47.038 \N 3684a786-6671-4268-8ed0-9db82ebca60b 0a985a0a-b515-42a0-8ec2-1c2b7e8a1d8c {"id": "0a985a0a-b515-42a0-8ec2-1c2b7e8a1d8c", "type": "patron", "active": false, "barcode": "28080213476560", "metadata": {"createdDate": "2021-03-09T10:22:47.178", "updatedDate": "2021-03-09T10:22:47.178+00:00"}, "personal": {"email": "dessie@zboncak-rohan.wv.us", "phone": "1-372-106-2828", "lastName": "Kiehn", "addresses": [{"city": "Juneau", "region": "NE", "countryId": "US", "postalCode": "54614-8352", "addressLine1": "35813 Suite A", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Donny", "dateOfBirth": "1997-04-20T00:00:00.000+00:00", "mobilePhone": "236.785.4303", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "garnet", "createdDate": "2021-03-09T10:22:47.225+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:47.225+00:00", "enrollmentDate": "2016-01-29T00:00:00.000+00:00", "expirationDate": "2019-07-21T00:00:00.000+00:00"} 2021-03-09 10:22:47.178 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e f4e0bd3e-1592-4a70-9f4a-41ccb6ca6b43 {"id": "f4e0bd3e-1592-4a70-9f4a-41ccb6ca6b43", "type": "patron", "active": false, "barcode": "915065121508469", "metadata": {"createdDate": "2021-03-09T10:22:47.322", "updatedDate": "2021-03-09T10:22:47.322+00:00"}, "personal": {"email": "aimee@sanford-schneider-and-kessler.ar", "phone": "086.011.5005 x35496", "lastName": "Fadel", "addresses": [{"city": "Frankfort", "region": "MO", "countryId": "US", "postalCode": "89268", "addressLine1": "17617 O'Reilly Drives #536", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Gilbert", "middleName": "Jadyn", "dateOfBirth": "1954-08-04T00:00:00.000+00:00", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "declan", "createdDate": "2021-03-09T10:22:47.373+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:47.373+00:00", "enrollmentDate": "2016-08-30T00:00:00.000+00:00", "expirationDate": "2020-01-13T00:00:00.000+00:00"} 2021-03-09 10:22:47.322 \N ad0bc554-d5bc-463c-85d1-5562127ae91b 4ca6da61-a9fa-4226-850d-43aa2d89f9a6 {"id": "4ca6da61-a9fa-4226-850d-43aa2d89f9a6", "type": "patron", "active": false, "barcode": "808493955182189", "metadata": {"createdDate": "2021-03-09T10:22:47.469", "updatedDate": "2021-03-09T10:22:47.469+00:00"}, "personal": {"email": "antonio@terry-hegmann.ma", "phone": "229-117-3695", "lastName": "Jewess", "addresses": [{"city": "Springdale", "region": "NC", "countryId": "US", "postalCode": "73494-8235", "addressLine1": "43238 Kuhn Meadows", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Tyrel", "middleName": "Jamey", "dateOfBirth": "1967-08-23T00:00:00.000+00:00", "mobilePhone": "467-243-3953 x653", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "clare", "createdDate": "2021-03-09T10:22:47.519+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:47.519+00:00", "enrollmentDate": "2017-08-15T00:00:00.000+00:00", "expirationDate": "2020-11-03T00:00:00.000+00:00"} 2021-03-09 10:22:47.469 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 2075c729-a9b8-43db-860c-60a3cc31a949 {"id": "2075c729-a9b8-43db-860c-60a3cc31a949", "type": "patron", "active": false, "barcode": "496915951064778", "metadata": {"createdDate": "2021-03-09T10:22:47.599", "updatedDate": "2021-03-09T10:22:47.599+00:00"}, "personal": {"email": "otilia@morar-and-sons.ht", "phone": "304-321-2064", "lastName": "Davis", "addresses": [{"city": "Calabasas", "region": "DE", "countryId": "US", "postalCode": "28899-6585", "addressLine1": "96238 Bernier Glens Apt. 531", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Jodie", "dateOfBirth": "2000-02-20T00:00:00.000+00:00", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "freida", "createdDate": "2021-03-09T10:22:47.649+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:47.649+00:00", "enrollmentDate": "2015-07-05T00:00:00.000+00:00", "expirationDate": "2020-06-05T00:00:00.000+00:00"} 2021-03-09 10:22:47.599 \N 503a81cd-6c26-400f-b620-14c08943697c 5cf0c0d9-17cc-42f1-87c1-10ec6476fc3a {"id": "5cf0c0d9-17cc-42f1-87c1-10ec6476fc3a", "type": "patron", "active": false, "barcode": "266239838351268", "metadata": {"createdDate": "2021-03-09T10:22:47.733", "updatedDate": "2021-03-09T10:22:47.733+00:00"}, "personal": {"email": "marion@pollich-wyman.an", "phone": "505-141-3379 x346", "lastName": "Grant", "addresses": [{"city": "Avalon", "region": "AK", "countryId": "US", "postalCode": "68145", "addressLine1": "70292 Collins Isle Suite 950", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Emerson", "middleName": "Amira", "dateOfBirth": "1981-01-09T00:00:00.000+00:00", "mobilePhone": "(504)649-6115 x156", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "zula", "createdDate": "2021-03-09T10:22:47.781+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:47.781+00:00", "enrollmentDate": "2015-07-31T00:00:00.000+00:00", "expirationDate": "2020-11-22T00:00:00.000+00:00"} 2021-03-09 10:22:47.733 \N 3684a786-6671-4268-8ed0-9db82ebca60b b549fc60-9779-4bac-a4de-df8304ff69c4 {"id": "b549fc60-9779-4bac-a4de-df8304ff69c4", "type": "patron", "active": false, "barcode": "862944982096053", "metadata": {"createdDate": "2021-03-09T10:22:47.859", "updatedDate": "2021-03-09T10:22:47.859+00:00"}, "personal": {"email": "cheyenne@wehner-schinner-and-altenwerth.ne", "phone": "1-545-455-4488 x6810", "lastName": "McCullough", "addresses": [{"city": "Dayton", "region": "PA", "countryId": "US", "postalCode": "09960-1381", "addressLine1": "11572 Cummerata Cliffs", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Donny", "middleName": "Macey", "dateOfBirth": "1974-11-07T00:00:00.000+00:00", "mobilePhone": "893.859.2876 x60367", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "sigrid", "createdDate": "2021-03-09T10:22:47.907+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:47.907+00:00", "enrollmentDate": "2018-05-12T00:00:00.000+00:00", "expirationDate": "2020-02-05T00:00:00.000+00:00"} 2021-03-09 10:22:47.859 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 2a424823-588a-45ee-9441-a6384b6614b2 {"id": "2a424823-588a-45ee-9441-a6384b6614b2", "type": "patron", "active": true, "barcode": "236964750970123", "metadata": {"createdDate": "2021-03-09T10:22:47.989", "updatedDate": "2021-03-09T10:22:47.989+00:00"}, "personal": {"email": "pascale@lindgren-hammes-and-toy.nm.us", "phone": "1-626-870-9701 x37563", "lastName": "Brown", "addresses": [{"city": "Kettering", "region": "DE", "countryId": "US", "postalCode": "69199-1877", "addressLine1": "49964 Brannon Ford Suite 362", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Pietro", "middleName": "Brigitte", "dateOfBirth": "1979-01-23T00:00:00.000+00:00", "mobilePhone": "(487)166-9371 x49884", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "vida", "createdDate": "2021-03-09T10:22:48.035+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:48.035+00:00", "enrollmentDate": "2017-06-27T00:00:00.000+00:00", "expirationDate": "2021-02-26T00:00:00.000+00:00"} 2021-03-09 10:22:47.989 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 734f2e97-2c41-4e70-9b98-44cead2607e4 {"id": "734f2e97-2c41-4e70-9b98-44cead2607e4", "type": "patron", "active": false, "barcode": "117648823412451", "metadata": {"createdDate": "2021-03-09T10:22:48.124", "updatedDate": "2021-03-09T10:22:48.124+00:00"}, "personal": {"email": "lesly@bradtke-and-sons.hu", "phone": "1-953-587-8208 x563", "lastName": "Lang", "addresses": [{"city": "Fremont", "region": "NV", "countryId": "US", "postalCode": "18901", "addressLine1": "92674 Nikko Street Apt. 791", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Name", "middleName": "Reina", "dateOfBirth": "1957-01-08T00:00:00.000+00:00", "mobilePhone": "528-675-4904", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "laurine", "createdDate": "2021-03-09T10:22:48.169+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:48.169+00:00", "enrollmentDate": "2018-01-10T00:00:00.000+00:00", "expirationDate": "2019-08-24T00:00:00.000+00:00"} 2021-03-09 10:22:48.124 \N 3684a786-6671-4268-8ed0-9db82ebca60b 4fd8d3dd-ebc0-4d10-ae81-199e831be32e {"id": "4fd8d3dd-ebc0-4d10-ae81-199e831be32e", "type": "patron", "active": true, "barcode": "501745941225589", "metadata": {"createdDate": "2021-03-09T10:22:48.256", "updatedDate": "2021-03-09T10:22:48.256+00:00"}, "personal": {"email": "wellington@reinger-inc.nc", "phone": "(301)179-9972 x3077", "lastName": "Hamill", "addresses": [{"city": "Huntsville", "region": "WV", "countryId": "US", "postalCode": "61712", "addressLine1": "77066 Corkery Rapids Suite 251", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Maryjane", "middleName": "Rubie", "dateOfBirth": "1958-10-27T00:00:00.000+00:00", "mobilePhone": "675.933.9336", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "willa", "createdDate": "2021-03-09T10:22:48.300+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:48.300+00:00", "enrollmentDate": "2016-03-16T00:00:00.000+00:00", "expirationDate": "2021-03-05T00:00:00.000+00:00"} 2021-03-09 10:22:48.256 \N 503a81cd-6c26-400f-b620-14c08943697c 1200edd1-4b53-43e7-a9b7-fc590ab1c8d9 {"id": "1200edd1-4b53-43e7-a9b7-fc590ab1c8d9", "type": "patron", "active": false, "barcode": "123121221025275", "metadata": {"createdDate": "2021-03-09T10:22:48.381", "updatedDate": "2021-03-09T10:22:48.381+00:00"}, "personal": {"email": "boris@schimmel-oberbrunner.eh", "phone": "675-694-9085", "lastName": "Bayer", "addresses": [{"city": "Bakersfield", "region": "NC", "countryId": "US", "postalCode": "99846-5104", "addressLine1": "00830 Greta Ramp Apt. 852", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Reina", "middleName": "Dayana", "dateOfBirth": "1957-04-12T00:00:00.000+00:00", "mobilePhone": "441.909.9397 x8076", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "edna", "createdDate": "2021-03-09T10:22:48.428+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:48.428+00:00", "enrollmentDate": "2018-01-05T00:00:00.000+00:00", "expirationDate": "2020-07-01T00:00:00.000+00:00"} 2021-03-09 10:22:48.381 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 1b5795ad-5ad0-4ba5-9c62-a7b26eb2f6b8 {"id": "1b5795ad-5ad0-4ba5-9c62-a7b26eb2f6b8", "type": "patron", "active": true, "barcode": "379497554513687", "metadata": {"createdDate": "2021-03-09T10:22:48.511", "updatedDate": "2021-03-09T10:22:48.511+00:00"}, "personal": {"email": "caden@corkery-christiansen-and-frami.ph", "phone": "212-246-4921 x835", "lastName": "Grimes", "addresses": [{"city": "Hamilton", "region": "NM", "countryId": "US", "postalCode": "40284", "addressLine1": "38099 Alexane Rapids #949", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Anne", "dateOfBirth": "1982-12-30T00:00:00.000+00:00", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "lon", "createdDate": "2021-03-09T10:22:48.559+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:48.559+00:00", "enrollmentDate": "2016-01-02T00:00:00.000+00:00", "expirationDate": "2019-12-18T00:00:00.000+00:00"} 2021-03-09 10:22:48.511 \N 503a81cd-6c26-400f-b620-14c08943697c c9255397-a8cb-4208-9558-1aae0e6f2c68 {"id": "c9255397-a8cb-4208-9558-1aae0e6f2c68", "type": "patron", "active": true, "barcode": "503862344388601", "metadata": {"createdDate": "2021-03-09T10:22:48.645", "updatedDate": "2021-03-09T10:22:48.645+00:00"}, "personal": {"email": "ibrahim@strosin-mills.ir", "phone": "045.478.1813", "lastName": "Champlin", "addresses": [{"city": "Artesia", "region": "KY", "countryId": "US", "postalCode": "54673", "addressLine1": "70443 Braulio Burg", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Darrell", "dateOfBirth": "1982-09-02T00:00:00.000+00:00", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "leone", "createdDate": "2021-03-09T10:22:48.697+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:48.697+00:00", "enrollmentDate": "2018-08-02T00:00:00.000+00:00", "expirationDate": "2020-04-27T00:00:00.000+00:00"} 2021-03-09 10:22:48.645 \N 3684a786-6671-4268-8ed0-9db82ebca60b 4f012e5c-840b-4f7a-b7e0-c2e3b1d41309 {"id": "4f012e5c-840b-4f7a-b7e0-c2e3b1d41309", "type": "patron", "active": false, "barcode": "605566117903595", "metadata": {"createdDate": "2021-03-09T10:22:48.784", "updatedDate": "2021-03-09T10:22:48.784+00:00"}, "personal": {"email": "tod@crooks-llc.io", "phone": "1-308-768-9868", "lastName": "Denesik", "addresses": [{"city": "Rosemead", "region": "IA", "countryId": "US", "postalCode": "24959-2664", "addressLine1": "65343 Ewald Mission", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Toney", "middleName": "Alexzander", "dateOfBirth": "2011-07-10T00:00:00.000+00:00", "mobilePhone": "1-925-901-9660", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "carlo", "createdDate": "2021-03-09T10:22:48.829+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:48.829+00:00", "enrollmentDate": "2017-11-17T00:00:00.000+00:00", "expirationDate": "2019-10-08T00:00:00.000+00:00"} 2021-03-09 10:22:48.784 \N 503a81cd-6c26-400f-b620-14c08943697c 488d4776-d0e2-4618-9ca9-78fa5dcc787c {"id": "488d4776-d0e2-4618-9ca9-78fa5dcc787c", "type": "patron", "active": false, "barcode": "701139394489075", "metadata": {"createdDate": "2021-03-09T10:22:48.915", "updatedDate": "2021-03-09T10:22:48.915+00:00"}, "personal": {"email": "jovan@reichel-and-sons.pg", "phone": "1-549-518-7196 x16096", "lastName": "Hodkiewicz", "addresses": [{"city": "Murray", "region": "WA", "countryId": "US", "postalCode": "04798-5798", "addressLine1": "19494 Ken Underpass Apt. 057", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Rosalia", "middleName": "Mable", "dateOfBirth": "1963-08-19T00:00:00.000+00:00", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "yoshiko", "createdDate": "2021-03-09T10:22:48.957+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:48.957+00:00", "enrollmentDate": "2017-05-03T00:00:00.000+00:00", "expirationDate": "2019-05-15T00:00:00.000+00:00"} 2021-03-09 10:22:48.915 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e acf8aab2-91ee-4210-bb7c-b688d66a9de4 {"id": "acf8aab2-91ee-4210-bb7c-b688d66a9de4", "type": "patron", "active": true, "barcode": "184798638159936", "metadata": {"createdDate": "2021-03-09T10:22:49.046", "updatedDate": "2021-03-09T10:22:49.046+00:00"}, "personal": {"email": "christa@thiel-hahn.bn", "phone": "(602)146-5656 x7536", "lastName": "Koelpin", "addresses": [{"city": "Lomita", "region": "PR", "countryId": "US", "postalCode": "95218", "addressLine1": "15604 Front", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Maximo", "middleName": "Jacquelyn", "dateOfBirth": "1948-06-08T00:00:00.000+00:00", "mobilePhone": "652.054.8955", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "aaliyah", "createdDate": "2021-03-09T10:22:49.103+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:49.103+00:00", "enrollmentDate": "2018-06-01T00:00:00.000+00:00", "expirationDate": "2020-10-16T00:00:00.000+00:00"} 2021-03-09 10:22:49.046 \N 503a81cd-6c26-400f-b620-14c08943697c 62b25727-310f-4fa3-b308-666a6cf28c97 {"id": "62b25727-310f-4fa3-b308-666a6cf28c97", "type": "patron", "active": true, "barcode": "944257632357327", "metadata": {"createdDate": "2021-03-09T10:22:49.183", "updatedDate": "2021-03-09T10:22:49.183+00:00"}, "personal": {"email": "marlon@okuneva-ledner-and-botsford.ms.us", "phone": "(883)824-0791 x93849", "lastName": "Bergnaum", "addresses": [{"city": "Laguna Woods", "region": "OK", "countryId": "US", "postalCode": "44989-7843", "addressLine1": "68921 Brain Fort", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Evalyn", "dateOfBirth": "2002-04-01T00:00:00.000+00:00", "mobilePhone": "(310)631-5558 x6886", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "herbert", "createdDate": "2021-03-09T10:22:49.238+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:49.238+00:00", "enrollmentDate": "2016-01-24T00:00:00.000+00:00", "expirationDate": "2019-08-31T00:00:00.000+00:00"} 2021-03-09 10:22:49.183 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 86344e52-979a-45da-ad44-9edcc05c5312 {"id": "86344e52-979a-45da-ad44-9edcc05c5312", "type": "patron", "active": true, "barcode": "951631321647731", "metadata": {"createdDate": "2021-03-09T10:22:49.327", "updatedDate": "2021-03-09T10:22:49.327+00:00"}, "personal": {"email": "deborah@braun-and-sons.tp", "phone": "(024)340-3008 x71420", "lastName": "Glover", "addresses": [{"city": "Ashland", "region": "MI", "countryId": "US", "postalCode": "96940-0918", "addressLine1": "17142 Prohaska Turnpike", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Lucas", "middleName": "Ervin", "dateOfBirth": "1976-04-18T00:00:00.000+00:00", "mobilePhone": "1-422-331-2245", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "schuyler", "createdDate": "2021-03-09T10:22:49.371+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:49.371+00:00", "enrollmentDate": "2016-03-06T00:00:00.000+00:00", "expirationDate": "2020-01-18T00:00:00.000+00:00"} 2021-03-09 10:22:49.327 \N 503a81cd-6c26-400f-b620-14c08943697c 8931291a-8f92-4044-a17f-49a546b489ce {"id": "8931291a-8f92-4044-a17f-49a546b489ce", "type": "patron", "active": true, "barcode": "573695099759142", "metadata": {"createdDate": "2021-03-09T10:22:49.463", "updatedDate": "2021-03-09T10:22:49.463+00:00"}, "personal": {"email": "moises@west-gerhold.pt", "phone": "1-708-748-0323", "lastName": "Robel", "addresses": [{"city": "Aliso Viejo", "region": "ND", "countryId": "US", "postalCode": "45508-7697", "addressLine1": "99508 Carissa Junction Apt. 288", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Adelbert", "middleName": "Clarabelle", "dateOfBirth": "2001-06-07T00:00:00.000+00:00", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "eladio", "createdDate": "2021-03-09T10:22:49.521+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:49.521+00:00", "enrollmentDate": "2018-11-16T00:00:00.000+00:00", "expirationDate": "2020-04-29T00:00:00.000+00:00"} 2021-03-09 10:22:49.463 \N 503a81cd-6c26-400f-b620-14c08943697c 1bcfd501-232e-47da-a511-fdd29ae3d692 {"id": "1bcfd501-232e-47da-a511-fdd29ae3d692", "type": "patron", "active": true, "barcode": "613459431184452", "metadata": {"createdDate": "2021-03-09T10:22:49.612", "updatedDate": "2021-03-09T10:22:49.612+00:00"}, "personal": {"email": "berneice@rau-and-sons.do", "phone": "1-120-568-3150 x6347", "lastName": "Ruecker", "addresses": [{"city": "Florence", "region": "SD", "countryId": "US", "postalCode": "62905-4613", "addressLine1": "81094 Upper", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Gay", "middleName": "Adelbert", "dateOfBirth": "1998-06-17T00:00:00.000+00:00", "mobilePhone": "396-791-1800", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "broderick", "createdDate": "2021-03-09T10:22:49.662+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:49.662+00:00", "enrollmentDate": "2018-01-09T00:00:00.000+00:00", "expirationDate": "2020-10-07T00:00:00.000+00:00"} 2021-03-09 10:22:49.612 \N 3684a786-6671-4268-8ed0-9db82ebca60b 0ab0736b-57ba-404c-9b17-d94de2cf4d9a {"id": "0ab0736b-57ba-404c-9b17-d94de2cf4d9a", "type": "patron", "active": true, "barcode": "426841866444480", "metadata": {"createdDate": "2021-03-09T10:22:49.749", "updatedDate": "2021-03-09T10:22:49.749+00:00"}, "personal": {"email": "genoveva@reynolds-buckridge.sn", "phone": "017.558.7388 x62049", "lastName": "Rolfson", "addresses": [{"city": "Montebello", "region": "MN", "countryId": "US", "postalCode": "67868-9596", "addressLine1": "28088 Roselyn Port Suite 081", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Hildegard", "middleName": "Katrine", "dateOfBirth": "2009-11-12T00:00:00.000+00:00", "mobilePhone": "217-470-4457", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "zella", "createdDate": "2021-03-09T10:22:49.795+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:49.795+00:00", "enrollmentDate": "2018-08-06T00:00:00.000+00:00", "expirationDate": "2019-05-26T00:00:00.000+00:00"} 2021-03-09 10:22:49.749 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 42e9d211-4bfb-45fe-a088-f19d0a514f98 {"id": "42e9d211-4bfb-45fe-a088-f19d0a514f98", "type": "patron", "active": false, "barcode": "362710768281452", "metadata": {"createdDate": "2021-03-09T10:22:49.882", "updatedDate": "2021-03-09T10:22:49.882+00:00"}, "personal": {"email": "kathlyn@steuber-kutch-and-durgan.so", "phone": "057.915.0771", "lastName": "Hoeger", "addresses": [{"city": "Orange", "region": "AS", "countryId": "US", "postalCode": "66983-4991", "addressLine1": "59904 Sipes Heights #987", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Vern", "middleName": "Libbie", "dateOfBirth": "1947-12-02T00:00:00.000+00:00", "mobilePhone": "(522)859-5038", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "lorna", "createdDate": "2021-03-09T10:22:49.931+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:49.931+00:00", "enrollmentDate": "2015-09-09T00:00:00.000+00:00", "expirationDate": "2019-12-09T00:00:00.000+00:00"} 2021-03-09 10:22:49.882 \N 3684a786-6671-4268-8ed0-9db82ebca60b 7aa8082c-d1ed-4e33-bf0e-02d3efe5624b {"id": "7aa8082c-d1ed-4e33-bf0e-02d3efe5624b", "type": "patron", "active": true, "barcode": "446795796750656", "metadata": {"createdDate": "2021-03-09T10:22:50.017", "updatedDate": "2021-03-09T10:22:50.017+00:00"}, "personal": {"email": "sheridan@white-hoppe.ac", "phone": "1-131-621-4510 x438", "lastName": "Thompson", "addresses": [{"city": "Costa Mesa", "region": "AE", "countryId": "US", "postalCode": "29068-1244", "addressLine1": "89993 Freeman Mews Apt. 243", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Freida", "middleName": "Jaren", "dateOfBirth": "1984-04-26T00:00:00.000+00:00", "mobilePhone": "705.747.1963", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "kayleigh", "createdDate": "2021-03-09T10:22:50.070+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:50.070+00:00", "enrollmentDate": "2016-11-06T00:00:00.000+00:00", "expirationDate": "2020-07-04T00:00:00.000+00:00"} 2021-03-09 10:22:50.017 \N 503a81cd-6c26-400f-b620-14c08943697c dc3cd5a5-4235-48c3-b9d3-a958863f7498 {"id": "dc3cd5a5-4235-48c3-b9d3-a958863f7498", "type": "patron", "active": true, "barcode": "488892976621858", "metadata": {"createdDate": "2021-03-09T10:22:50.149", "updatedDate": "2021-03-09T10:22:50.149+00:00"}, "personal": {"email": "titus@wunsch-quigley.ba", "phone": "213.651.5587 x2056", "lastName": "VonRueden", "addresses": [{"city": "Mesa", "region": "SD", "countryId": "US", "postalCode": "38447", "addressLine1": "00782 Anderson Roads Apt. 644", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Vince", "middleName": "Christian", "dateOfBirth": "2013-09-01T00:00:00.000+00:00", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "juana", "createdDate": "2021-03-09T10:22:50.199+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:50.199+00:00", "enrollmentDate": "2018-05-02T00:00:00.000+00:00", "expirationDate": "2020-10-11T00:00:00.000+00:00"} 2021-03-09 10:22:50.149 \N 3684a786-6671-4268-8ed0-9db82ebca60b 2eb8fef6-95c8-491d-a6a3-00176997dca4 {"id": "2eb8fef6-95c8-491d-a6a3-00176997dca4", "type": "patron", "active": true, "barcode": "556024123510408", "metadata": {"createdDate": "2021-03-09T10:22:50.299", "updatedDate": "2021-03-09T10:22:50.299+00:00"}, "personal": {"email": "erich@sporer-group.lv", "phone": "(071)940-1388", "lastName": "Kovacek", "addresses": [{"city": "Tuskegee", "region": "SC", "countryId": "US", "postalCode": "51037-6339", "addressLine1": "39249 Amina Plaza", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Carey", "dateOfBirth": "1984-08-04T00:00:00.000+00:00", "mobilePhone": "(609)148-9779 x79899", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "loren", "createdDate": "2021-03-09T10:22:50.346+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:50.346+00:00", "enrollmentDate": "2015-10-21T00:00:00.000+00:00", "expirationDate": "2019-12-30T00:00:00.000+00:00"} 2021-03-09 10:22:50.299 \N ad0bc554-d5bc-463c-85d1-5562127ae91b c1277b9b-b165-48ee-ac35-e737ed325f34 {"id": "c1277b9b-b165-48ee-ac35-e737ed325f34", "type": "patron", "active": false, "barcode": "580560277022502", "metadata": {"createdDate": "2021-03-09T10:22:50.444", "updatedDate": "2021-03-09T10:22:50.444+00:00"}, "personal": {"email": "zack@langosh-oconner-and-runolfsdottir.id.us", "phone": "1-640-587-7257 x35499", "lastName": "Pollich", "addresses": [{"city": "Demopolis", "region": "PR", "countryId": "US", "postalCode": "38116-1902", "addressLine1": "46087 Haley Shore", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Leda", "dateOfBirth": "1984-04-30T00:00:00.000+00:00", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "candelario", "createdDate": "2021-03-09T10:22:50.494+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:50.494+00:00", "enrollmentDate": "2018-08-08T00:00:00.000+00:00", "expirationDate": "2020-06-17T00:00:00.000+00:00"} 2021-03-09 10:22:50.444 \N ad0bc554-d5bc-463c-85d1-5562127ae91b f62dc160-eacc-4922-a0cb-e1ed68a44601 {"id": "f62dc160-eacc-4922-a0cb-e1ed68a44601", "type": "patron", "active": true, "barcode": "113383880513143", "metadata": {"createdDate": "2021-03-09T10:22:50.578", "updatedDate": "2021-03-09T10:22:50.578+00:00"}, "personal": {"email": "craig@ruecker-dach.se", "phone": "091.863.0584 x7173", "lastName": "Mertz", "addresses": [{"city": "Aliso Viejo", "region": "WI", "countryId": "US", "postalCode": "70057-1624", "addressLine1": "64834 Beier Villages", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Jovan", "dateOfBirth": "1976-03-20T00:00:00.000+00:00", "mobilePhone": "1-292-331-2729 x473", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "abby", "createdDate": "2021-03-09T10:22:50.625+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:50.625+00:00", "enrollmentDate": "2015-09-12T00:00:00.000+00:00", "expirationDate": "2020-12-10T00:00:00.000+00:00"} 2021-03-09 10:22:50.578 \N 3684a786-6671-4268-8ed0-9db82ebca60b e6dfcfef-e724-4485-870d-d2c4d1dcfdd9 {"id": "e6dfcfef-e724-4485-870d-d2c4d1dcfdd9", "type": "patron", "active": true, "barcode": "379402199971554", "metadata": {"createdDate": "2021-03-09T10:22:50.71", "updatedDate": "2021-03-09T10:22:50.710+00:00"}, "personal": {"email": "lacey@hansen-klocko.ni", "phone": "(558)273-3002", "lastName": "Kub", "addresses": [{"city": "Delta Junction", "region": "KY", "countryId": "US", "postalCode": "46912", "addressLine1": "21531 Floor 3548", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Adrienne", "middleName": "Madisen", "dateOfBirth": "1979-10-04T00:00:00.000+00:00", "mobilePhone": "686.430.5419", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "jed", "createdDate": "2021-03-09T10:22:50.754+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:50.754+00:00", "enrollmentDate": "2018-06-22T00:00:00.000+00:00", "expirationDate": "2019-11-13T00:00:00.000+00:00"} 2021-03-09 10:22:50.71 \N 503a81cd-6c26-400f-b620-14c08943697c ae2f6ce7-386a-4c5a-9fcf-e5f517a88ced {"id": "ae2f6ce7-386a-4c5a-9fcf-e5f517a88ced", "type": "patron", "active": true, "barcode": "322526636349373", "metadata": {"createdDate": "2021-03-09T10:22:50.831", "updatedDate": "2021-03-09T10:22:50.831+00:00"}, "personal": {"email": "mariela@sanford-quigley-and-purdy.mn", "phone": "1-167-194-5323 x2190", "lastName": "Dach", "addresses": [{"city": "Monterey", "region": "TX", "countryId": "US", "postalCode": "40295", "addressLine1": "64304 Peter Mountains", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Colt", "middleName": "Alford", "dateOfBirth": "1979-06-24T00:00:00.000+00:00", "mobilePhone": "1-261-847-2746", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "maymie", "createdDate": "2021-03-09T10:22:50.870+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:50.870+00:00", "enrollmentDate": "2018-04-22T00:00:00.000+00:00", "expirationDate": "2020-07-16T00:00:00.000+00:00"} 2021-03-09 10:22:50.831 \N ad0bc554-d5bc-463c-85d1-5562127ae91b 4a5e1aa3-0733-45d9-b9cc-836b4e92d6ea {"id": "4a5e1aa3-0733-45d9-b9cc-836b4e92d6ea", "type": "patron", "active": false, "barcode": "634378221416120", "metadata": {"createdDate": "2021-03-09T10:22:50.957", "updatedDate": "2021-03-09T10:22:50.957+00:00"}, "personal": {"email": "tia@braun-beatty.ke", "phone": "(480)552-9477", "lastName": "Brakus", "addresses": [{"city": "Phoenix", "region": "SC", "countryId": "US", "postalCode": "85718-1813", "addressLine1": "14483 Walsh Viaduct", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Joyce", "middleName": "Lane", "dateOfBirth": "2006-08-24T00:00:00.000+00:00", "mobilePhone": "204-258-1825 x225", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "louie", "createdDate": "2021-03-09T10:22:51.001+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:51.001+00:00", "enrollmentDate": "2019-01-07T00:00:00.000+00:00", "expirationDate": "2020-05-12T00:00:00.000+00:00"} 2021-03-09 10:22:50.957 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e b09038a4-0386-4782-8ee8-11aa87e09887 {"id": "b09038a4-0386-4782-8ee8-11aa87e09887", "type": "patron", "active": true, "barcode": "981420708307993", "metadata": {"createdDate": "2021-03-09T10:22:51.083", "updatedDate": "2021-03-09T10:22:51.083+00:00"}, "personal": {"email": "mack@gulgowski-conn.om", "phone": "116-652-6703", "lastName": "Kohler", "addresses": [{"city": "Fountain Valley", "region": "GU", "countryId": "US", "postalCode": "07192", "addressLine1": "03888 Douglas Keys", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Maida", "middleName": "Lowell", "dateOfBirth": "1976-06-06T00:00:00.000+00:00", "mobilePhone": "(824)319-7898", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "ricardo", "createdDate": "2021-03-09T10:22:51.144+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:51.144+00:00", "enrollmentDate": "2018-08-21T00:00:00.000+00:00", "expirationDate": "2019-06-19T00:00:00.000+00:00"} 2021-03-09 10:22:51.083 \N 503a81cd-6c26-400f-b620-14c08943697c 975256dc-abdc-45d1-b51a-f9f9ca15a491 {"id": "975256dc-abdc-45d1-b51a-f9f9ca15a491", "type": "patron", "active": true, "barcode": "375669381232857", "metadata": {"createdDate": "2021-03-09T10:22:51.235", "updatedDate": "2021-03-09T10:22:51.235+00:00"}, "personal": {"email": "garfield@bins-heidenreich-and-tremblay.ao", "phone": "363.952.2395 x24397", "lastName": "Kulas", "addresses": [{"city": "Marana", "region": "CT", "countryId": "US", "postalCode": "19691-4725", "addressLine1": "17902 Gislason Divide", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Ryann", "middleName": "Mayra", "dateOfBirth": "1997-04-23T00:00:00.000+00:00", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "reyna", "createdDate": "2021-03-09T10:22:51.281+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:51.281+00:00", "enrollmentDate": "2017-10-25T00:00:00.000+00:00", "expirationDate": "2019-11-15T00:00:00.000+00:00"} 2021-03-09 10:22:51.235 \N 503a81cd-6c26-400f-b620-14c08943697c 65fcc41e-df15-459a-bf93-2f53cfa8ff7f {"id": "65fcc41e-df15-459a-bf93-2f53cfa8ff7f", "type": "patron", "active": true, "barcode": "947268160813830", "metadata": {"createdDate": "2021-03-09T10:22:51.363", "updatedDate": "2021-03-09T10:22:51.363+00:00"}, "personal": {"email": "cedrick@carter-kihn.bj", "phone": "111-788-2683", "lastName": "Bednar", "addresses": [{"city": "Dana Point", "region": "UT", "countryId": "US", "postalCode": "58686-2415", "addressLine1": "88019 Floor 277", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Monroe", "middleName": "Elvera", "dateOfBirth": "1994-11-06T00:00:00.000+00:00", "mobilePhone": "128.156.5851", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "renee", "createdDate": "2021-03-09T10:22:51.412+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:51.412+00:00", "enrollmentDate": "2016-12-25T00:00:00.000+00:00", "expirationDate": "2019-08-13T00:00:00.000+00:00"} 2021-03-09 10:22:51.363 \N ad0bc554-d5bc-463c-85d1-5562127ae91b 08522da4-668a-4450-a769-3abfae5678ad {"id": "08522da4-668a-4450-a769-3abfae5678ad", "type": "patron", "active": true, "barcode": "548755241194417", "metadata": {"createdDate": "2021-03-09T10:22:51.492", "updatedDate": "2021-03-09T10:22:51.492+00:00"}, "personal": {"email": "werner@wolff-hauck.lk", "phone": "1-029-555-1699", "lastName": "Braun", "addresses": [{"city": "Bowling Green", "region": "CT", "countryId": "US", "postalCode": "52150-4432", "addressLine1": "32796 Kuhn Drive Suite 950", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Aleen", "dateOfBirth": "1996-07-05T00:00:00.000+00:00", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "johan", "createdDate": "2021-03-09T10:22:51.542+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:51.542+00:00", "enrollmentDate": "2016-07-12T00:00:00.000+00:00", "expirationDate": "2020-03-30T00:00:00.000+00:00"} 2021-03-09 10:22:51.492 \N 3684a786-6671-4268-8ed0-9db82ebca60b 5e3d70ff-a89a-44a0-a2e2-4cae67668805 {"id": "5e3d70ff-a89a-44a0-a2e2-4cae67668805", "type": "patron", "active": true, "barcode": "356270679006161", "metadata": {"createdDate": "2021-03-09T10:22:51.626", "updatedDate": "2021-03-09T10:22:51.626+00:00"}, "personal": {"email": "mariela@wiza-schamberger.gq", "phone": "1-102-800-2197 x336", "lastName": "Kautzer", "addresses": [{"city": "Santa Clara", "region": "VT", "countryId": "US", "postalCode": "17842", "addressLine1": "75452 Ladarius Trace Apt. 604", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Evalyn", "middleName": "Maxine", "dateOfBirth": "1993-09-23T00:00:00.000+00:00", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "gardner", "createdDate": "2021-03-09T10:22:51.683+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:51.683+00:00", "enrollmentDate": "2016-11-10T00:00:00.000+00:00", "expirationDate": "2020-09-16T00:00:00.000+00:00"} 2021-03-09 10:22:51.626 \N 503a81cd-6c26-400f-b620-14c08943697c 5ed8a4be-f0d8-459d-9e9a-27f2e8c155af {"id": "5ed8a4be-f0d8-459d-9e9a-27f2e8c155af", "type": "patron", "active": true, "barcode": "763581543039464", "metadata": {"createdDate": "2021-03-09T10:22:51.776", "updatedDate": "2021-03-09T10:22:51.776+00:00"}, "personal": {"email": "kamryn@conroy-champlin-and-langosh.ga", "phone": "1-035-157-3080 x960", "lastName": "Reynolds", "addresses": [{"city": "Hawthorne", "region": "PR", "countryId": "US", "postalCode": "71977-2524", "addressLine1": "64753 Ritchie Ridge Apt. 813", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Chester", "dateOfBirth": "2014-04-05T00:00:00.000+00:00", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "mertie", "createdDate": "2021-03-09T10:22:51.827+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:51.827+00:00", "enrollmentDate": "2017-01-22T00:00:00.000+00:00", "expirationDate": "2021-02-12T00:00:00.000+00:00"} 2021-03-09 10:22:51.776 \N 3684a786-6671-4268-8ed0-9db82ebca60b 23807f0f-6053-417c-b335-f3b0f84ceb8e {"id": "23807f0f-6053-417c-b335-f3b0f84ceb8e", "type": "patron", "active": true, "barcode": "889532071090496", "metadata": {"createdDate": "2021-03-09T10:22:51.912", "updatedDate": "2021-03-09T10:22:51.912+00:00"}, "personal": {"email": "andy@little-abernathy-and-weissnat.dj", "phone": "(815)321-8493 x5347", "lastName": "Hessel", "addresses": [{"city": "Sierra Vista", "region": "MT", "countryId": "US", "postalCode": "25029", "addressLine1": "25186 Loma Drive", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Shyann", "middleName": "Courtney", "dateOfBirth": "1965-05-23T00:00:00.000+00:00", "mobilePhone": "1-212-924-1617", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "destany", "createdDate": "2021-03-09T10:22:51.959+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:51.959+00:00", "enrollmentDate": "2016-08-26T00:00:00.000+00:00", "expirationDate": "2019-05-02T00:00:00.000+00:00"} 2021-03-09 10:22:51.912 \N 503a81cd-6c26-400f-b620-14c08943697c 261e1062-a473-47f4-a00f-a197c4a87530 {"id": "261e1062-a473-47f4-a00f-a197c4a87530", "type": "patron", "active": true, "barcode": "898724875163885", "metadata": {"createdDate": "2021-03-09T10:22:52.036", "updatedDate": "2021-03-09T10:22:52.036+00:00"}, "personal": {"email": "tomasa@wintheiser-llc.id", "phone": "(963)962-0601 x70839", "lastName": "Brekke", "addresses": [{"city": "Cerritos", "region": "VT", "countryId": "US", "postalCode": "58753", "addressLine1": "33196 Bogan Courts", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Karson", "middleName": "Marlen", "dateOfBirth": "2011-08-28T00:00:00.000+00:00", "mobilePhone": "(854)860-1000 x2414", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "alene", "createdDate": "2021-03-09T10:22:52.086+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:52.086+00:00", "enrollmentDate": "2018-11-24T00:00:00.000+00:00", "expirationDate": "2019-07-31T00:00:00.000+00:00"} 2021-03-09 10:22:52.036 \N 503a81cd-6c26-400f-b620-14c08943697c df84acd4-4425-47e9-9a25-db8eb2973950 {"id": "df84acd4-4425-47e9-9a25-db8eb2973950", "type": "patron", "active": true, "barcode": "794586144277893", "metadata": {"createdDate": "2021-03-09T10:22:52.177", "updatedDate": "2021-03-09T10:22:52.177+00:00"}, "personal": {"email": "syble@cormier-group.id", "phone": "(202)784-5280 x0354", "lastName": "Nicolas", "addresses": [{"city": "Orange", "region": "PR", "countryId": "US", "postalCode": "55469-8400", "addressLine1": "30313 Herzog Centers Apt. 568", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Triston", "dateOfBirth": "2002-11-14T00:00:00.000+00:00", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "elmira", "createdDate": "2021-03-09T10:22:52.224+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:52.224+00:00", "enrollmentDate": "2016-03-18T00:00:00.000+00:00", "expirationDate": "2020-08-05T00:00:00.000+00:00"} 2021-03-09 10:22:52.177 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 51e1e298-db10-465b-8c20-7f3d1e929834 {"id": "51e1e298-db10-465b-8c20-7f3d1e929834", "type": "patron", "active": false, "barcode": "53906695937790", "metadata": {"createdDate": "2021-03-09T10:22:52.307", "updatedDate": "2021-03-09T10:22:52.307+00:00"}, "personal": {"email": "joyce@ullrich-wiegand.ba", "phone": "1-794-142-6128", "lastName": "Zulauf", "addresses": [{"city": "San Bernardino", "region": "NH", "countryId": "US", "postalCode": "81491", "addressLine1": "62455 Side", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Emmie", "middleName": "Layne", "dateOfBirth": "1961-07-19T00:00:00.000+00:00", "mobilePhone": "703.646.6286", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "hanna", "createdDate": "2021-03-09T10:22:52.357+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:52.357+00:00", "enrollmentDate": "2016-12-24T00:00:00.000+00:00", "expirationDate": "2019-11-22T00:00:00.000+00:00"} 2021-03-09 10:22:52.307 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 956f39c5-92e3-4c26-bcdc-1827674710cf {"id": "956f39c5-92e3-4c26-bcdc-1827674710cf", "type": "patron", "active": true, "barcode": "890127749735764", "metadata": {"createdDate": "2021-03-09T10:22:52.442", "updatedDate": "2021-03-09T10:22:52.442+00:00"}, "personal": {"email": "kariane@douglas-hoeger-and-stokes.py", "phone": "(234)617-6257 x0630", "lastName": "Hilll", "addresses": [{"city": "Rolling Hills Estates", "region": "MI", "countryId": "US", "postalCode": "98879-8861", "addressLine1": "12402 Leon Passage", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Santino", "middleName": "Travon", "dateOfBirth": "1995-04-02T00:00:00.000+00:00", "mobilePhone": "1-363-752-3867 x6224", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "fred", "createdDate": "2021-03-09T10:22:52.487+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:52.487+00:00", "enrollmentDate": "2017-06-05T00:00:00.000+00:00", "expirationDate": "2020-09-28T00:00:00.000+00:00"} 2021-03-09 10:22:52.442 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 1db3d6c7-6ac5-4b3c-b860-deb2df449736 {"id": "1db3d6c7-6ac5-4b3c-b860-deb2df449736", "type": "patron", "active": false, "barcode": "38533358444816", "metadata": {"createdDate": "2021-03-09T10:22:52.567", "updatedDate": "2021-03-09T10:22:52.567+00:00"}, "personal": {"email": "hayley@carter-nikolaus-and-shanahan.sc", "phone": "726.878.7734 x07859", "lastName": "Skiles", "addresses": [{"city": "Vernon", "region": "AA", "countryId": "US", "postalCode": "66957-2784", "addressLine1": "64633 Rohan Junctions Apt. 056", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Destany", "dateOfBirth": "1965-03-30T00:00:00.000+00:00", "mobilePhone": "(553)742-9289 x3797", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "haven", "createdDate": "2021-03-09T10:22:52.612+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:52.612+00:00", "enrollmentDate": "2016-01-22T00:00:00.000+00:00", "expirationDate": "2020-12-06T00:00:00.000+00:00"} 2021-03-09 10:22:52.567 \N ad0bc554-d5bc-463c-85d1-5562127ae91b dc6e1590-7021-433d-98a3-eda0f8d8fde1 {"id": "dc6e1590-7021-433d-98a3-eda0f8d8fde1", "type": "patron", "active": false, "barcode": "181666707103044", "metadata": {"createdDate": "2021-03-09T10:22:52.701", "updatedDate": "2021-03-09T10:22:52.701+00:00"}, "personal": {"email": "geo@hodkiewicz-runolfsson-and-mueller.nm.us", "phone": "118-350-2886 x77039", "lastName": "Ratke", "addresses": [{"city": "Sitka", "region": "ID", "countryId": "US", "postalCode": "09951-8342", "addressLine1": "88604 Richard Dale", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Parker", "dateOfBirth": "2005-08-04T00:00:00.000+00:00", "mobilePhone": "999-776-5791 x8374", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "dock", "createdDate": "2021-03-09T10:22:52.750+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:52.750+00:00", "enrollmentDate": "2017-02-11T00:00:00.000+00:00", "expirationDate": "2020-12-11T00:00:00.000+00:00"} 2021-03-09 10:22:52.701 \N 3684a786-6671-4268-8ed0-9db82ebca60b 28724f2b-89b3-4a05-839c-2e77138e01a3 {"id": "28724f2b-89b3-4a05-839c-2e77138e01a3", "type": "patron", "active": true, "barcode": "562954566768080", "metadata": {"createdDate": "2021-03-09T10:22:52.836", "updatedDate": "2021-03-09T10:22:52.836+00:00"}, "personal": {"email": "rodger@ferry-daniel-and-terry.gy", "phone": "(782)744-2716", "lastName": "Gislason", "addresses": [{"city": "Hidden Hills", "region": "MS", "countryId": "US", "postalCode": "69559", "addressLine1": "69389 Floor 4238", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Mekhi", "middleName": "Jeff", "dateOfBirth": "2001-06-17T00:00:00.000+00:00", "mobilePhone": "1-081-061-8041 x89919", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "ruth", "createdDate": "2021-03-09T10:22:52.885+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:52.885+00:00", "enrollmentDate": "2016-06-04T00:00:00.000+00:00", "expirationDate": "2020-02-01T00:00:00.000+00:00"} 2021-03-09 10:22:52.836 \N ad0bc554-d5bc-463c-85d1-5562127ae91b b9a05706-9d87-499d-8e5e-47dc512a21c3 {"id": "b9a05706-9d87-499d-8e5e-47dc512a21c3", "type": "patron", "active": true, "barcode": "163270145839920", "metadata": {"createdDate": "2021-03-09T10:22:52.97", "updatedDate": "2021-03-09T10:22:52.970+00:00"}, "personal": {"email": "albina@beahan-schowalter-and-hirthe.nj.us", "phone": "783.141.0202 x61122", "lastName": "Funk", "addresses": [{"city": "Jonesboro", "region": "IA", "countryId": "US", "postalCode": "02204-9296", "addressLine1": "85402 Grady Station", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Blanca", "middleName": "America", "dateOfBirth": "1954-08-24T00:00:00.000+00:00", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "gia", "createdDate": "2021-03-09T10:22:53.018+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:53.018+00:00", "enrollmentDate": "2015-09-23T00:00:00.000+00:00", "expirationDate": "2020-01-31T00:00:00.000+00:00"} 2021-03-09 10:22:52.97 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 5cc5bd09-d90e-4484-8058-74c237165877 {"id": "5cc5bd09-d90e-4484-8058-74c237165877", "type": "patron", "active": true, "barcode": "153469334675175", "metadata": {"createdDate": "2021-03-09T10:22:53.1", "updatedDate": "2021-03-09T10:22:53.100+00:00"}, "personal": {"email": "dereck@medhurst-gerlach-and-stracke.coop", "phone": "1-186-650-6147", "lastName": "Marquardt", "addresses": [{"city": "Mobile", "region": "OR", "countryId": "US", "postalCode": "80391-5580", "addressLine1": "89486 Flavie Crest Apt. 636", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Gladyce", "middleName": "Erica", "dateOfBirth": "1960-11-05T00:00:00.000+00:00", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "fritz", "createdDate": "2021-03-09T10:22:53.149+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:53.149+00:00", "enrollmentDate": "2019-01-13T00:00:00.000+00:00", "expirationDate": "2020-03-13T00:00:00.000+00:00"} 2021-03-09 10:22:53.1 \N 3684a786-6671-4268-8ed0-9db82ebca60b a208cf17-a7f0-452d-ae0e-64011232c86d {"id": "a208cf17-a7f0-452d-ae0e-64011232c86d", "type": "patron", "active": false, "barcode": "745758690367580", "metadata": {"createdDate": "2021-03-09T10:22:53.239", "updatedDate": "2021-03-09T10:22:53.239+00:00"}, "personal": {"email": "guy@lemke-llc.ok.us", "phone": "(136)082-4680 x8231", "lastName": "Abbott", "addresses": [{"city": "Seal Beach", "region": "NC", "countryId": "US", "postalCode": "35848-5877", "addressLine1": "43069 Lobby", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Candace", "middleName": "Fanny", "dateOfBirth": "1986-06-26T00:00:00.000+00:00", "mobilePhone": "(436)763-7413", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "devonte", "createdDate": "2021-03-09T10:22:53.281+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:53.281+00:00", "enrollmentDate": "2015-08-28T00:00:00.000+00:00", "expirationDate": "2019-08-16T00:00:00.000+00:00"} 2021-03-09 10:22:53.239 \N ad0bc554-d5bc-463c-85d1-5562127ae91b e5e950e0-3f56-4ff1-8e86-671cdbc37688 {"id": "e5e950e0-3f56-4ff1-8e86-671cdbc37688", "type": "patron", "active": true, "barcode": "865397063334345", "metadata": {"createdDate": "2021-03-09T10:22:53.367", "updatedDate": "2021-03-09T10:22:53.367+00:00"}, "personal": {"email": "destinee@abernathy-jacobs.ps", "phone": "533-887-8695", "lastName": "Denesik", "addresses": [{"city": "Lexington", "region": "TN", "countryId": "US", "postalCode": "93562-3911", "addressLine1": "53739 Haley Village", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Laurianne", "dateOfBirth": "1986-02-07T00:00:00.000+00:00", "mobilePhone": "945-131-2689 x4666", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "julio", "createdDate": "2021-03-09T10:22:53.412+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:53.412+00:00", "enrollmentDate": "2019-01-29T00:00:00.000+00:00", "expirationDate": "2020-08-28T00:00:00.000+00:00"} 2021-03-09 10:22:53.367 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 2220260d-12c7-49ab-9ac4-f923323f0cb3 {"id": "2220260d-12c7-49ab-9ac4-f923323f0cb3", "type": "patron", "active": false, "barcode": "727649491002914", "metadata": {"createdDate": "2021-03-09T10:22:53.496", "updatedDate": "2021-03-09T10:22:53.496+00:00"}, "personal": {"email": "laila@trantow-parisian.sb", "phone": "803-183-6360 x010", "lastName": "Littel", "addresses": [{"city": "Yorba Linda", "region": "NM", "countryId": "US", "postalCode": "42979-4043", "addressLine1": "13765 Elvie Centers Suite 994", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Ashlynn", "middleName": "Alize", "dateOfBirth": "1946-06-06T00:00:00.000+00:00", "mobilePhone": "1-839-176-8900 x8928", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "percival", "createdDate": "2021-03-09T10:22:53.547+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:53.547+00:00", "enrollmentDate": "2015-08-19T00:00:00.000+00:00", "expirationDate": "2019-09-24T00:00:00.000+00:00"} 2021-03-09 10:22:53.496 \N ad0bc554-d5bc-463c-85d1-5562127ae91b f7a0a518-6ff3-4531-b54b-e630d61aede0 {"id": "f7a0a518-6ff3-4531-b54b-e630d61aede0", "type": "patron", "active": true, "barcode": "251565120881853", "metadata": {"createdDate": "2021-03-09T10:22:53.626", "updatedDate": "2021-03-09T10:22:53.626+00:00"}, "personal": {"email": "guy@luettgen-and-sons.museum", "phone": "(320)754-0186", "lastName": "Crooks", "addresses": [{"city": "Monterey", "region": "OR", "countryId": "US", "postalCode": "37536-7927", "addressLine1": "18653 Swift Turnpike Suite 323", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Ryder", "dateOfBirth": "1982-05-24T00:00:00.000+00:00", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "amy", "createdDate": "2021-03-09T10:22:53.674+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:53.674+00:00", "enrollmentDate": "2015-08-01T00:00:00.000+00:00", "expirationDate": "2020-04-21T00:00:00.000+00:00"} 2021-03-09 10:22:53.626 \N ad0bc554-d5bc-463c-85d1-5562127ae91b 70e0c050-e842-4eee-9632-967a49e43bb2 {"id": "70e0c050-e842-4eee-9632-967a49e43bb2", "type": "patron", "active": true, "barcode": "291411120468286", "metadata": {"createdDate": "2021-03-09T10:22:53.761", "updatedDate": "2021-03-09T10:22:53.761+00:00"}, "personal": {"email": "israel@schmidt-stamm.gd", "phone": "(241)231-0895", "lastName": "Torp", "addresses": [{"city": "Oro Valley", "region": "IN", "countryId": "US", "postalCode": "85548", "addressLine1": "87178 Darian Grove #311", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Willard", "middleName": "Sofia", "dateOfBirth": "1979-09-15T00:00:00.000+00:00", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "hayden", "createdDate": "2021-03-09T10:22:53.807+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:53.807+00:00", "enrollmentDate": "2015-05-22T00:00:00.000+00:00", "expirationDate": "2020-06-10T00:00:00.000+00:00"} 2021-03-09 10:22:53.761 \N 3684a786-6671-4268-8ed0-9db82ebca60b c0d4a2da-7c38-46f4-869c-797bb083ee2d {"id": "c0d4a2da-7c38-46f4-869c-797bb083ee2d", "type": "patron", "active": true, "barcode": "738389180339421", "metadata": {"createdDate": "2021-03-09T10:22:53.893", "updatedDate": "2021-03-09T10:22:53.893+00:00"}, "personal": {"email": "jaqueline@prohaska-toy.az.us", "phone": "1-220-294-1820", "lastName": "Grady", "addresses": [{"city": "La Mirada", "region": "CO", "countryId": "US", "postalCode": "84767", "addressLine1": "03906 Waelchi Lodge", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Linda", "middleName": "Abbigail", "dateOfBirth": "1967-09-16T00:00:00.000+00:00", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "mina", "createdDate": "2021-03-09T10:22:53.943+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:53.943+00:00", "enrollmentDate": "2016-10-03T00:00:00.000+00:00", "expirationDate": "2020-10-08T00:00:00.000+00:00"} 2021-03-09 10:22:53.893 \N 503a81cd-6c26-400f-b620-14c08943697c f046c9bd-45aa-4ab1-ad3f-461ead3dfdc1 {"id": "f046c9bd-45aa-4ab1-ad3f-461ead3dfdc1", "type": "patron", "active": true, "barcode": "963182390538364", "metadata": {"createdDate": "2021-03-09T10:22:54.027", "updatedDate": "2021-03-09T10:22:54.027+00:00"}, "personal": {"email": "jarred@lowe-and-sons.my", "phone": "740.834.7513 x1522", "lastName": "Lind", "addresses": [{"city": "Artesia", "region": "MN", "countryId": "US", "postalCode": "22659-9172", "addressLine1": "32461 Dena Courts", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Nikki", "middleName": "Carter", "dateOfBirth": "1958-08-22T00:00:00.000+00:00", "mobilePhone": "1-833-574-5277 x613", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "lupe", "createdDate": "2021-03-09T10:22:54.076+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:54.076+00:00", "enrollmentDate": "2015-04-26T00:00:00.000+00:00", "expirationDate": "2019-05-31T00:00:00.000+00:00"} 2021-03-09 10:22:54.027 \N 503a81cd-6c26-400f-b620-14c08943697c b3f61b07-a1b3-44ac-bb7f-622b90ac17c3 {"id": "b3f61b07-a1b3-44ac-bb7f-622b90ac17c3", "type": "patron", "active": false, "barcode": "107131839278402", "metadata": {"createdDate": "2021-03-09T10:22:54.168", "updatedDate": "2021-03-09T10:22:54.168+00:00"}, "personal": {"email": "christelle@kiehn-okon.eg", "phone": "1-318-554-9171", "lastName": "Jenkins", "addresses": [{"city": "San Francisco", "region": "WY", "countryId": "US", "postalCode": "08094-1191", "addressLine1": "09881 Basement", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Brayan", "middleName": "Cory", "dateOfBirth": "1960-06-28T00:00:00.000+00:00", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "davonte", "createdDate": "2021-03-09T10:22:54.226+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:54.226+00:00", "enrollmentDate": "2015-10-10T00:00:00.000+00:00", "expirationDate": "2020-03-11T00:00:00.000+00:00"} 2021-03-09 10:22:54.168 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e c2610e2c-a6f8-4336-95b6-54d716348b03 {"id": "c2610e2c-a6f8-4336-95b6-54d716348b03", "type": "patron", "active": true, "barcode": "293649666736325", "metadata": {"createdDate": "2021-03-09T10:22:54.323", "updatedDate": "2021-03-09T10:22:54.323+00:00"}, "personal": {"email": "sydney@medhurst-inc.int", "phone": "038.642.4876", "lastName": "Prohaska", "addresses": [{"city": "Artesia", "region": "GU", "countryId": "US", "postalCode": "49011", "addressLine1": "49850 Elmira Glens", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Jarrod", "dateOfBirth": "1977-11-06T00:00:00.000+00:00", "mobilePhone": "(536)595-2779", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "rowland", "createdDate": "2021-03-09T10:22:54.370+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:54.370+00:00", "enrollmentDate": "2019-02-19T00:00:00.000+00:00", "expirationDate": "2020-01-23T00:00:00.000+00:00"} 2021-03-09 10:22:54.323 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 2c9e8cdd-d2fe-485b-b663-34225637fe93 {"id": "2c9e8cdd-d2fe-485b-b663-34225637fe93", "type": "patron", "active": true, "barcode": "684350779415389", "metadata": {"createdDate": "2021-03-09T10:22:54.458", "updatedDate": "2021-03-09T10:22:54.458+00:00"}, "personal": {"email": "pasquale@murphy-conn.lt", "phone": "974-776-1929", "lastName": "Swift", "addresses": [{"city": "Homer", "region": "NC", "countryId": "US", "postalCode": "23732-5100", "addressLine1": "59878 Marques Divide", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Orval", "dateOfBirth": "1977-04-08T00:00:00.000+00:00", "mobilePhone": "187.412.7582", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "maudie", "createdDate": "2021-03-09T10:22:54.507+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:54.507+00:00", "enrollmentDate": "2017-04-07T00:00:00.000+00:00", "expirationDate": "2019-04-18T00:00:00.000+00:00"} 2021-03-09 10:22:54.458 \N ad0bc554-d5bc-463c-85d1-5562127ae91b f1c2d681-faba-4950-918f-bf58d914ba1f {"id": "f1c2d681-faba-4950-918f-bf58d914ba1f", "type": "patron", "active": true, "barcode": "96069289569047", "metadata": {"createdDate": "2021-03-09T10:22:54.59", "updatedDate": "2021-03-09T10:22:54.590+00:00"}, "personal": {"email": "estell@larkin-lueilwitz.dz", "phone": "664-759-1427", "lastName": "Parisian", "addresses": [{"city": "Los Angeles", "region": "WV", "countryId": "US", "postalCode": "65816-8769", "addressLine1": "59102 Unit 84-B", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Mittie", "middleName": "Keanu", "dateOfBirth": "1979-01-20T00:00:00.000+00:00", "mobilePhone": "685.462.7647 x23440", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "maiya", "createdDate": "2021-03-09T10:22:54.634+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:54.634+00:00", "enrollmentDate": "2015-10-08T00:00:00.000+00:00", "expirationDate": "2020-12-18T00:00:00.000+00:00"} 2021-03-09 10:22:54.59 \N ad0bc554-d5bc-463c-85d1-5562127ae91b e0b7cb11-7d1f-48d8-b8a5-bc138550313d {"id": "e0b7cb11-7d1f-48d8-b8a5-bc138550313d", "type": "patron", "active": false, "barcode": "131104607484122", "metadata": {"createdDate": "2021-03-09T10:22:54.722", "updatedDate": "2021-03-09T10:22:54.722+00:00"}, "personal": {"email": "claudie@bruen-zboncak.al", "phone": "468-350-2158 x590", "lastName": "Yundt", "addresses": [{"city": "Newport Beach", "region": "OK", "countryId": "US", "postalCode": "62741-4894", "addressLine1": "28183 Zion Grove #028", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Esteban", "middleName": "Loma", "dateOfBirth": "1971-06-24T00:00:00.000+00:00", "mobilePhone": "004-863-5965", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "cortney", "createdDate": "2021-03-09T10:22:54.770+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:54.770+00:00", "enrollmentDate": "2016-01-18T00:00:00.000+00:00", "expirationDate": "2019-10-10T00:00:00.000+00:00"} 2021-03-09 10:22:54.722 \N 3684a786-6671-4268-8ed0-9db82ebca60b 86c9f455-a685-45d0-9d01-5943a1ba7e5b {"id": "86c9f455-a685-45d0-9d01-5943a1ba7e5b", "type": "patron", "active": true, "barcode": "775671613439016", "metadata": {"createdDate": "2021-03-09T10:22:54.85", "updatedDate": "2021-03-09T10:22:54.850+00:00"}, "personal": {"email": "samara@kohler-buckridge-and-champlin.me.us", "phone": "1-071-537-9550 x0217", "lastName": "Conn", "addresses": [{"city": "Santa Rosa", "region": "TN", "countryId": "US", "postalCode": "61535-1115", "addressLine1": "12335 Alysson Grove", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Ceasar", "dateOfBirth": "1996-04-26T00:00:00.000+00:00", "mobilePhone": "907.862.1518", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "federico", "createdDate": "2021-03-09T10:22:54.900+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:54.900+00:00", "enrollmentDate": "2019-02-28T00:00:00.000+00:00", "expirationDate": "2020-10-29T00:00:00.000+00:00"} 2021-03-09 10:22:54.85 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 2e5f9cc4-46ab-4dfe-b40a-8493296353fb {"id": "2e5f9cc4-46ab-4dfe-b40a-8493296353fb", "type": "patron", "active": true, "barcode": "69474122738444", "metadata": {"createdDate": "2021-03-09T10:22:54.993", "updatedDate": "2021-03-09T10:22:54.993+00:00"}, "personal": {"email": "hailie@beatty-group.as", "phone": "1-763-964-3113", "lastName": "Lehner", "addresses": [{"city": "San Jose", "region": "IA", "countryId": "US", "postalCode": "54868", "addressLine1": "71430 Erica Ford", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Name", "dateOfBirth": "1954-04-07T00:00:00.000+00:00", "mobilePhone": "1-189-695-6352 x952", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "lessie", "createdDate": "2021-03-09T10:22:55.045+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:55.045+00:00", "enrollmentDate": "2016-12-05T00:00:00.000+00:00", "expirationDate": "2019-03-16T00:00:00.000+00:00"} 2021-03-09 10:22:54.993 \N 3684a786-6671-4268-8ed0-9db82ebca60b 259d55dc-015d-420a-b13d-8706018305b1 {"id": "259d55dc-015d-420a-b13d-8706018305b1", "type": "patron", "active": true, "barcode": "696296117207797", "metadata": {"createdDate": "2021-03-09T10:22:55.131", "updatedDate": "2021-03-09T10:22:55.131+00:00"}, "personal": {"email": "noemie@johnson-weimann.pg", "phone": "845.879.6319 x77980", "lastName": "Mraz", "addresses": [{"city": "West Memphis", "region": "MA", "countryId": "US", "postalCode": "44613", "addressLine1": "65144 Muller Squares Suite 747", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Sherman", "dateOfBirth": "1948-04-03T00:00:00.000+00:00", "mobilePhone": "1-612-179-7983 x236", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "chadrick", "createdDate": "2021-03-09T10:22:55.189+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:55.189+00:00", "enrollmentDate": "2018-07-01T00:00:00.000+00:00", "expirationDate": "2020-07-03T00:00:00.000+00:00"} 2021-03-09 10:22:55.131 \N 3684a786-6671-4268-8ed0-9db82ebca60b b7f677aa-e2db-4bb5-81f8-beee547bce68 {"id": "b7f677aa-e2db-4bb5-81f8-beee547bce68", "type": "patron", "active": true, "barcode": "198766567677200", "metadata": {"createdDate": "2021-03-09T10:22:55.329", "updatedDate": "2021-03-09T10:22:55.329+00:00"}, "personal": {"email": "ed@wyman-and-sons.lc", "phone": "1-488-794-2446 x46383", "lastName": "Spinka", "addresses": [{"city": "Ventura", "region": "UT", "countryId": "US", "postalCode": "58929-3148", "addressLine1": "22734 Rogelio Park #619", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Gayle", "middleName": "Yadira", "dateOfBirth": "1948-08-28T00:00:00.000+00:00", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "ellen", "createdDate": "2021-03-09T10:22:55.388+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:55.388+00:00", "enrollmentDate": "2015-08-18T00:00:00.000+00:00", "expirationDate": "2020-01-20T00:00:00.000+00:00"} 2021-03-09 10:22:55.329 \N ad0bc554-d5bc-463c-85d1-5562127ae91b 7597bd13-9f57-4cd1-a7cf-dc0ac7375280 {"id": "7597bd13-9f57-4cd1-a7cf-dc0ac7375280", "type": "patron", "active": true, "barcode": "738734358526066", "metadata": {"createdDate": "2021-03-09T10:22:55.508", "updatedDate": "2021-03-09T10:22:55.508+00:00"}, "personal": {"email": "aida@daugherty-stark.om", "phone": "113.449.8885 x88304", "lastName": "Lakin", "addresses": [{"city": "Tucson", "region": "KY", "countryId": "US", "postalCode": "45736-8922", "addressLine1": "70819 Kamron Parkways Suite 334", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Retha", "dateOfBirth": "1958-12-09T00:00:00.000+00:00", "mobilePhone": "038.636.7271 x696", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "neil", "createdDate": "2021-03-09T10:22:55.597+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:55.597+00:00", "enrollmentDate": "2017-07-06T00:00:00.000+00:00", "expirationDate": "2019-08-27T00:00:00.000+00:00"} 2021-03-09 10:22:55.508 \N 3684a786-6671-4268-8ed0-9db82ebca60b 201be44f-2f29-47af-85da-2cbfc72ac29e {"id": "201be44f-2f29-47af-85da-2cbfc72ac29e", "type": "patron", "active": true, "barcode": "775849269788032", "metadata": {"createdDate": "2021-03-09T10:22:55.681", "updatedDate": "2021-03-09T10:22:55.681+00:00"}, "personal": {"email": "magdalen@powlowski-davis.cv", "phone": "277-585-0295 x07776", "lastName": "Christiansen", "addresses": [{"city": "Roseville", "region": "NH", "countryId": "US", "postalCode": "93784-5355", "addressLine1": "31306 Katelynn Crescent", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Katlynn", "middleName": "May", "dateOfBirth": "2000-04-02T00:00:00.000+00:00", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "winnifred", "createdDate": "2021-03-09T10:22:55.739+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:55.739+00:00", "enrollmentDate": "2016-01-30T00:00:00.000+00:00", "expirationDate": "2021-01-28T00:00:00.000+00:00"} 2021-03-09 10:22:55.681 \N 503a81cd-6c26-400f-b620-14c08943697c 7b06cbcf-5d6d-431b-8922-20509d40f1ae {"id": "7b06cbcf-5d6d-431b-8922-20509d40f1ae", "type": "patron", "active": true, "barcode": "937814009886828", "metadata": {"createdDate": "2021-03-09T10:22:55.82", "updatedDate": "2021-03-09T10:22:55.820+00:00"}, "personal": {"email": "della@mayer-renner.eg", "phone": "801.732.3140", "lastName": "Denesik", "addresses": [{"city": "La Jolla", "region": "NC", "countryId": "US", "postalCode": "59920-4781", "addressLine1": "23315 Agustina Estate #966", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Leonor", "middleName": "Lyric", "dateOfBirth": "1980-06-17T00:00:00.000+00:00", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "imelda", "createdDate": "2021-03-09T10:22:55.868+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:55.868+00:00", "enrollmentDate": "2017-12-12T00:00:00.000+00:00", "expirationDate": "2020-07-08T00:00:00.000+00:00"} 2021-03-09 10:22:55.82 \N 503a81cd-6c26-400f-b620-14c08943697c b7da16ef-f3d2-4c12-a564-858bc3eee366 {"id": "b7da16ef-f3d2-4c12-a564-858bc3eee366", "type": "patron", "active": false, "barcode": "85287353151223", "metadata": {"createdDate": "2021-03-09T10:22:55.949", "updatedDate": "2021-03-09T10:22:55.949+00:00"}, "personal": {"email": "carlee@stoltenberg-conroy-and-haley.ke", "phone": "(557)463-6458", "lastName": "Spinka", "addresses": [{"city": "Youngstown", "region": "AA", "countryId": "US", "postalCode": "42417-8321", "addressLine1": "76755 Carole Island #241", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Catherine", "dateOfBirth": "1951-08-14T00:00:00.000+00:00", "mobilePhone": "334.929.0079 x6543", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "brannon", "createdDate": "2021-03-09T10:22:56.001+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:56.001+00:00", "enrollmentDate": "2019-01-09T00:00:00.000+00:00", "expirationDate": "2019-06-25T00:00:00.000+00:00"} 2021-03-09 10:22:55.949 \N ad0bc554-d5bc-463c-85d1-5562127ae91b 2fabd929-3ed9-40ae-aaf2-6c39c4bebf13 {"id": "2fabd929-3ed9-40ae-aaf2-6c39c4bebf13", "type": "patron", "active": false, "barcode": "478720922465697", "metadata": {"createdDate": "2021-03-09T10:22:56.082", "updatedDate": "2021-03-09T10:22:56.082+00:00"}, "personal": {"email": "everette@hermann-armstrong.wi.us", "phone": "504.537.5023", "lastName": "Denesik", "addresses": [{"city": "North Little Rock", "region": "AE", "countryId": "US", "postalCode": "63028", "addressLine1": "66993 Lubowitz Fork", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Aliya", "dateOfBirth": "1966-08-07T00:00:00.000+00:00", "mobilePhone": "1-217-304-1117", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "nathanael", "createdDate": "2021-03-09T10:22:56.129+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:56.129+00:00", "enrollmentDate": "2019-01-28T00:00:00.000+00:00", "expirationDate": "2019-12-28T00:00:00.000+00:00"} 2021-03-09 10:22:56.082 \N 503a81cd-6c26-400f-b620-14c08943697c 0f1f1a5d-49b6-42f4-8b18-faa2ce0e7be4 {"id": "0f1f1a5d-49b6-42f4-8b18-faa2ce0e7be4", "type": "patron", "active": false, "barcode": "401285957986662", "metadata": {"createdDate": "2021-03-09T10:22:56.22", "updatedDate": "2021-03-09T10:22:56.220+00:00"}, "personal": {"email": "adrian@moen-purdy.mk", "phone": "079-330-2177", "lastName": "Kulas", "addresses": [{"city": "Rohnert Park", "region": "FM", "countryId": "US", "postalCode": "43393-3721", "addressLine1": "21036 Building D", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Charlotte", "middleName": "Lina", "dateOfBirth": "1972-10-10T00:00:00.000+00:00", "mobilePhone": "543-497-0914", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "aileen", "createdDate": "2021-03-09T10:22:56.280+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:56.280+00:00", "enrollmentDate": "2015-09-13T00:00:00.000+00:00", "expirationDate": "2019-05-05T00:00:00.000+00:00"} 2021-03-09 10:22:56.22 \N 3684a786-6671-4268-8ed0-9db82ebca60b a983c74e-b4f5-4ca9-94f0-b79efa947b27 {"id": "a983c74e-b4f5-4ca9-94f0-b79efa947b27", "type": "patron", "active": false, "barcode": "981698804715861", "metadata": {"createdDate": "2021-03-09T10:22:56.367", "updatedDate": "2021-03-09T10:22:56.367+00:00"}, "personal": {"email": "frank@barton-torphy-and-osinski.bj", "phone": "(023)078-6981", "lastName": "Walter", "addresses": [{"city": "Lake Forest", "region": "PW", "countryId": "US", "postalCode": "86611", "addressLine1": "28929 Lobby", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Emery", "middleName": "Emma", "dateOfBirth": "1989-01-24T00:00:00.000+00:00", "mobilePhone": "691.044.8088 x89516", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "shyanne", "createdDate": "2021-03-09T10:22:56.414+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:56.414+00:00", "enrollmentDate": "2017-10-27T00:00:00.000+00:00", "expirationDate": "2019-11-09T00:00:00.000+00:00"} 2021-03-09 10:22:56.367 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 63ff6975-5d7f-46c1-983a-dba27d163c4a {"id": "63ff6975-5d7f-46c1-983a-dba27d163c4a", "type": "patron", "active": true, "barcode": "558211605444718", "metadata": {"createdDate": "2021-03-09T10:22:56.495", "updatedDate": "2021-03-09T10:22:56.495+00:00"}, "personal": {"email": "faustino@mueller-inc.gu", "phone": "761.817.8409 x005", "lastName": "West", "addresses": [{"city": "Apple Valley", "region": "NC", "countryId": "US", "postalCode": "39226-2856", "addressLine1": "45137 Jast Causeway", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Erling", "middleName": "Keeley", "dateOfBirth": "1954-10-07T00:00:00.000+00:00", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "caitlyn", "createdDate": "2021-03-09T10:22:56.545+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:56.545+00:00", "enrollmentDate": "2016-08-17T00:00:00.000+00:00", "expirationDate": "2019-11-15T00:00:00.000+00:00"} 2021-03-09 10:22:56.495 \N 503a81cd-6c26-400f-b620-14c08943697c f643e743-3496-4ecd-94d7-1ca2fdf56c82 {"id": "f643e743-3496-4ecd-94d7-1ca2fdf56c82", "type": "patron", "active": true, "barcode": "28440705076121", "metadata": {"createdDate": "2021-03-09T10:22:56.625", "updatedDate": "2021-03-09T10:22:56.625+00:00"}, "personal": {"email": "monty@heidenreich-harris-and-veum.so", "phone": "(035)964-7281", "lastName": "Gutkowski", "addresses": [{"city": "Oxnard", "region": "AP", "countryId": "US", "postalCode": "37789-4976", "addressLine1": "06300 Side", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Morris", "middleName": "Jodie", "dateOfBirth": "2013-07-28T00:00:00.000+00:00", "mobilePhone": "(838)036-3745", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "carleton", "createdDate": "2021-03-09T10:22:56.670+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:56.670+00:00", "enrollmentDate": "2015-11-23T00:00:00.000+00:00", "expirationDate": "2020-05-20T00:00:00.000+00:00"} 2021-03-09 10:22:56.625 \N ad0bc554-d5bc-463c-85d1-5562127ae91b 260f1870-7dee-452d-a379-301f063febda {"id": "260f1870-7dee-452d-a379-301f063febda", "type": "patron", "active": true, "barcode": "685625879486391", "metadata": {"createdDate": "2021-03-09T10:22:56.76", "updatedDate": "2021-03-09T10:22:56.760+00:00"}, "personal": {"email": "citlalli@mclaughlin-kemmer.yu", "phone": "247.317.0270 x271", "lastName": "Bosco", "addresses": [{"city": "Yuma", "region": "AR", "countryId": "US", "postalCode": "08024", "addressLine1": "48438 Dach Forge", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Ronny", "middleName": "Rolando", "dateOfBirth": "1959-12-06T00:00:00.000+00:00", "mobilePhone": "(448)273-0210 x1902", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "alberto", "createdDate": "2021-03-09T10:22:56.806+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:56.806+00:00", "enrollmentDate": "2018-03-02T00:00:00.000+00:00", "expirationDate": "2020-10-30T00:00:00.000+00:00"} 2021-03-09 10:22:56.76 \N ad0bc554-d5bc-463c-85d1-5562127ae91b 8f7a47c4-d66f-4dba-9255-f74507a2ecee {"id": "8f7a47c4-d66f-4dba-9255-f74507a2ecee", "type": "patron", "active": false, "barcode": "12660472421494", "metadata": {"createdDate": "2021-03-09T10:22:56.882", "updatedDate": "2021-03-09T10:22:56.882+00:00"}, "personal": {"email": "nettie@cummings-and-sons.ps", "phone": "1-386-358-5666 x8907", "lastName": "Emard", "addresses": [{"city": "Sutter Creek", "region": "WI", "countryId": "US", "postalCode": "33617", "addressLine1": "73863 Waters Rapid", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Lottie", "middleName": "Tressie", "dateOfBirth": "1958-02-12T00:00:00.000+00:00", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "bridget", "createdDate": "2021-03-09T10:22:56.930+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:56.930+00:00", "enrollmentDate": "2016-08-04T00:00:00.000+00:00", "expirationDate": "2020-09-11T00:00:00.000+00:00"} 2021-03-09 10:22:56.882 \N 3684a786-6671-4268-8ed0-9db82ebca60b f3055954-ebc3-4da8-8a60-0b8f52480125 {"id": "f3055954-ebc3-4da8-8a60-0b8f52480125", "type": "patron", "active": false, "barcode": "784844955152063", "metadata": {"createdDate": "2021-03-09T10:22:57.017", "updatedDate": "2021-03-09T10:22:57.017+00:00"}, "personal": {"email": "lonnie@runte-reichel.es", "phone": "1-096-919-7527 x84197", "lastName": "Hickle", "addresses": [{"city": "La Jolla", "region": "AL", "countryId": "US", "postalCode": "04836", "addressLine1": "68728 Floor 8162", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Donna", "dateOfBirth": "1994-03-10T00:00:00.000+00:00", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "rita", "createdDate": "2021-03-09T10:22:57.065+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:57.065+00:00", "enrollmentDate": "2015-08-05T00:00:00.000+00:00", "expirationDate": "2019-06-26T00:00:00.000+00:00"} 2021-03-09 10:22:57.017 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e b3dae815-3d30-49f9-ac26-363e661382a0 {"id": "b3dae815-3d30-49f9-ac26-363e661382a0", "type": "patron", "active": true, "barcode": "592188849255453", "metadata": {"createdDate": "2021-03-09T10:22:57.145", "updatedDate": "2021-03-09T10:22:57.145+00:00"}, "personal": {"email": "krystina@wintheiser-schmitt-and-terry.fk", "phone": "1-129-679-3379 x27246", "lastName": "Kulas", "addresses": [{"city": "Youngstown", "region": "MD", "countryId": "US", "postalCode": "14450-7442", "addressLine1": "41662 Stop 3", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Loraine", "middleName": "Esteban", "dateOfBirth": "1951-05-02T00:00:00.000+00:00", "mobilePhone": "1-762-228-6098 x0493", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "elsie", "createdDate": "2021-03-09T10:22:57.196+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:57.196+00:00", "enrollmentDate": "2016-06-02T00:00:00.000+00:00", "expirationDate": "2020-10-13T00:00:00.000+00:00"} 2021-03-09 10:22:57.145 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e f308aadb-9403-44de-9b5a-06792b78bb3a {"id": "f308aadb-9403-44de-9b5a-06792b78bb3a", "type": "patron", "active": true, "barcode": "33336807737811", "metadata": {"createdDate": "2021-03-09T10:22:57.281", "updatedDate": "2021-03-09T10:22:57.281+00:00"}, "personal": {"email": "haleigh@heathcote-hills-and-cremin.hr", "phone": "(994)514-4149 x44836", "lastName": "Block", "addresses": [{"city": "Dayton", "region": "FM", "countryId": "US", "postalCode": "14715", "addressLine1": "37638 Bradtke Freeway", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Madyson", "dateOfBirth": "1996-02-12T00:00:00.000+00:00", "mobilePhone": "730.787.8907 x58057", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "quentin", "createdDate": "2021-03-09T10:22:57.326+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:57.326+00:00", "enrollmentDate": "2019-03-01T00:00:00.000+00:00", "expirationDate": "2020-04-20T00:00:00.000+00:00"} 2021-03-09 10:22:57.281 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 94fc2d88-359e-45e1-8360-ff6fb132cac4 {"id": "94fc2d88-359e-45e1-8360-ff6fb132cac4", "type": "patron", "active": true, "barcode": "465292133786217", "metadata": {"createdDate": "2021-03-09T10:22:57.415", "updatedDate": "2021-03-09T10:22:57.415+00:00"}, "personal": {"email": "milan@schamberger-prohaska-and-botsford.kr", "phone": "946-035-3204", "lastName": "Ruecker", "addresses": [{"city": "La Verne", "region": "AP", "countryId": "US", "postalCode": "43666", "addressLine1": "56789 Bashirian Burg #449", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Nina", "dateOfBirth": "1988-12-15T00:00:00.000+00:00", "mobilePhone": "694.341.9907 x83291", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "alivia", "createdDate": "2021-03-09T10:22:57.474+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:57.474+00:00", "enrollmentDate": "2016-03-06T00:00:00.000+00:00", "expirationDate": "2019-03-16T00:00:00.000+00:00"} 2021-03-09 10:22:57.415 \N 503a81cd-6c26-400f-b620-14c08943697c 4f0e711c-d583-41e0-9555-b62f1725023f {"id": "4f0e711c-d583-41e0-9555-b62f1725023f", "type": "patron", "active": true, "barcode": "997383903573496", "metadata": {"createdDate": "2021-03-09T10:22:57.566", "updatedDate": "2021-03-09T10:22:57.566+00:00"}, "personal": {"email": "earnestine@sipes-stokes-and-durgan.so", "phone": "(916)599-0326", "lastName": "Auer", "addresses": [{"city": "Indianapolis", "region": "FL", "countryId": "US", "postalCode": "14654-6001", "addressLine1": "00430 Denis Parks", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Darius", "dateOfBirth": "1968-08-12T00:00:00.000+00:00", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "leslie", "createdDate": "2021-03-09T10:22:57.609+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:57.609+00:00", "enrollmentDate": "2015-04-30T00:00:00.000+00:00", "expirationDate": "2020-06-19T00:00:00.000+00:00"} 2021-03-09 10:22:57.566 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 1b648069-8563-41c8-afc0-d8359f11503c {"id": "1b648069-8563-41c8-afc0-d8359f11503c", "type": "patron", "active": true, "barcode": "678545225007717", "metadata": {"createdDate": "2021-03-09T10:22:57.691", "updatedDate": "2021-03-09T10:22:57.691+00:00"}, "personal": {"email": "adelbert@little-and-sons.km", "phone": "1-673-699-9908 x3287", "lastName": "Olson", "addresses": [{"city": "Lynwood", "region": "NH", "countryId": "US", "postalCode": "21921", "addressLine1": "67959 Marvin Canyon", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Winfield", "dateOfBirth": "1988-02-15T00:00:00.000+00:00", "mobilePhone": "538.009.3963", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "rodolfo", "createdDate": "2021-03-09T10:22:57.754+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:57.754+00:00", "enrollmentDate": "2015-07-26T00:00:00.000+00:00", "expirationDate": "2020-01-20T00:00:00.000+00:00"} 2021-03-09 10:22:57.691 \N ad0bc554-d5bc-463c-85d1-5562127ae91b 56708cfe-750e-49ad-b72a-003ce7ad78a4 {"id": "56708cfe-750e-49ad-b72a-003ce7ad78a4", "type": "patron", "active": true, "barcode": "210781386299107", "metadata": {"createdDate": "2021-03-09T10:22:57.833", "updatedDate": "2021-03-09T10:22:57.833+00:00"}, "personal": {"email": "kian@schamberger-nicolas.kr", "phone": "1-390-960-0355 x091", "lastName": "Miller", "addresses": [{"city": "Lomita", "region": "AL", "countryId": "US", "postalCode": "13291-5479", "addressLine1": "44302 Mertz Pike", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Rudolph", "middleName": "Dahlia", "dateOfBirth": "1971-11-18T00:00:00.000+00:00", "mobilePhone": "(527)252-5076 x005", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "baylee", "createdDate": "2021-03-09T10:22:57.882+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:57.882+00:00", "enrollmentDate": "2019-02-06T00:00:00.000+00:00", "expirationDate": "2021-02-18T00:00:00.000+00:00"} 2021-03-09 10:22:57.833 \N ad0bc554-d5bc-463c-85d1-5562127ae91b 4acbd1f5-dbfe-4928-8325-2955e50faa4b {"id": "4acbd1f5-dbfe-4928-8325-2955e50faa4b", "type": "patron", "active": false, "barcode": "961651134809955", "metadata": {"createdDate": "2021-03-09T10:22:57.963", "updatedDate": "2021-03-09T10:22:57.963+00:00"}, "personal": {"email": "edward@hermiston-runte.ca.us", "phone": "979.411.7549 x3208", "lastName": "Sauer", "addresses": [{"city": "Santa Ana", "region": "LA", "countryId": "US", "postalCode": "15698", "addressLine1": "53643 Lorenz Row", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Hector", "dateOfBirth": "1994-01-29T00:00:00.000+00:00", "mobilePhone": "1-625-134-8454", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "shaylee", "createdDate": "2021-03-09T10:22:58.015+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:58.015+00:00", "enrollmentDate": "2015-07-28T00:00:00.000+00:00", "expirationDate": "2019-11-24T00:00:00.000+00:00"} 2021-03-09 10:22:57.963 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 4cb9a24c-76e1-4755-9f54-f51115e00b53 {"id": "4cb9a24c-76e1-4755-9f54-f51115e00b53", "type": "patron", "active": false, "barcode": "957779894505503", "metadata": {"createdDate": "2021-03-09T10:22:58.097", "updatedDate": "2021-03-09T10:22:58.097+00:00"}, "personal": {"email": "keon@hane-llc.ir", "phone": "735-486-0872 x1157", "lastName": "Hayes", "addresses": [{"city": "Santa Barbara", "region": "MP", "countryId": "US", "postalCode": "56251-1269", "addressLine1": "17685 Bogan Forge #378", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Parker", "dateOfBirth": "1947-08-16T00:00:00.000+00:00", "mobilePhone": "1-096-690-6796 x70684", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "santiago", "createdDate": "2021-03-09T10:22:58.145+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:58.145+00:00", "enrollmentDate": "2016-11-01T00:00:00.000+00:00", "expirationDate": "2020-03-15T00:00:00.000+00:00"} 2021-03-09 10:22:58.097 \N ad0bc554-d5bc-463c-85d1-5562127ae91b 65ec5d8b-c3f6-41d4-8026-fba1f7cae715 {"id": "65ec5d8b-c3f6-41d4-8026-fba1f7cae715", "type": "patron", "active": true, "barcode": "507697350841588", "metadata": {"createdDate": "2021-03-09T10:22:58.232", "updatedDate": "2021-03-09T10:22:58.232+00:00"}, "personal": {"email": "trinity@lehner-nikolaus.sc", "phone": "(148)070-7330", "lastName": "Jerde", "addresses": [{"city": "El Segundo", "region": "GU", "countryId": "US", "postalCode": "30380-4558", "addressLine1": "85611 Friesen Locks", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Coy", "middleName": "Delta", "dateOfBirth": "1999-02-03T00:00:00.000+00:00", "mobilePhone": "314.735.2132 x715", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "victor", "createdDate": "2021-03-09T10:22:58.282+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:58.282+00:00", "enrollmentDate": "2017-08-27T00:00:00.000+00:00", "expirationDate": "2020-01-18T00:00:00.000+00:00"} 2021-03-09 10:22:58.232 \N ad0bc554-d5bc-463c-85d1-5562127ae91b 8cde4a35-f58b-492e-bd07-d668f7322253 {"id": "8cde4a35-f58b-492e-bd07-d668f7322253", "type": "patron", "active": true, "barcode": "700978046103898", "metadata": {"createdDate": "2021-03-09T10:22:58.364", "updatedDate": "2021-03-09T10:22:58.364+00:00"}, "personal": {"email": "tre@greenholt-bergnaum.la", "phone": "800-128-5651 x040", "lastName": "Streich", "addresses": [{"city": "Merced", "region": "MN", "countryId": "US", "postalCode": "98253", "addressLine1": "54056 Windler Creek", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Erik", "dateOfBirth": "2011-04-06T00:00:00.000+00:00", "mobilePhone": "1-393-950-3556 x8963", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "viola", "createdDate": "2021-03-09T10:22:58.427+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:58.427+00:00", "enrollmentDate": "2017-06-15T00:00:00.000+00:00", "expirationDate": "2020-07-03T00:00:00.000+00:00"} 2021-03-09 10:22:58.364 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 888a321d-676e-42fc-b588-a677d16a76ec {"id": "888a321d-676e-42fc-b588-a677d16a76ec", "type": "patron", "active": false, "barcode": "85617808960080", "metadata": {"createdDate": "2021-03-09T10:22:58.504", "updatedDate": "2021-03-09T10:22:58.504+00:00"}, "personal": {"email": "blaze@greenholt-llc.sz", "phone": "165.685.1392 x727", "lastName": "Hessel", "addresses": [{"city": "Indio", "region": "IA", "countryId": "US", "postalCode": "33424", "addressLine1": "17832 Germaine Squares", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Russell", "middleName": "Allen", "dateOfBirth": "1974-10-31T00:00:00.000+00:00", "mobilePhone": "956-087-4381 x70664", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "jeramy", "createdDate": "2021-03-09T10:22:58.551+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:58.551+00:00", "enrollmentDate": "2017-02-23T00:00:00.000+00:00", "expirationDate": "2020-08-14T00:00:00.000+00:00"} 2021-03-09 10:22:58.504 \N ad0bc554-d5bc-463c-85d1-5562127ae91b 6f511507-dab9-42fb-b966-bb8a1330ee7a {"id": "6f511507-dab9-42fb-b966-bb8a1330ee7a", "type": "patron", "active": false, "barcode": "893791354018937", "metadata": {"createdDate": "2021-03-09T10:22:58.63", "updatedDate": "2021-03-09T10:22:58.630+00:00"}, "personal": {"email": "demetris@vandervort-nikolaus-and-skiles.ba", "phone": "888.500.6770 x22570", "lastName": "Goodwin", "addresses": [{"city": "Hamilton", "region": "NM", "countryId": "US", "postalCode": "67263-7943", "addressLine1": "98020 Kunze Lights", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Mara", "middleName": "Mikayla", "dateOfBirth": "1946-11-11T00:00:00.000+00:00", "mobilePhone": "1-456-899-6815 x518", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "odell", "createdDate": "2021-03-09T10:22:58.674+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:22:58.674+00:00", "enrollmentDate": "2017-06-20T00:00:00.000+00:00", "expirationDate": "2020-07-28T00:00:00.000+00:00"} 2021-03-09 10:22:58.63 \N ad0bc554-d5bc-463c-85d1-5562127ae91b 2cb8a9f5-5a04-4b26-89de-c5a522638de2 {"id": "2cb8a9f5-5a04-4b26-89de-c5a522638de2", "type": "patron", "active": true, "barcode": "664902183251587", "metadata": {"createdDate": "2021-03-09T10:22:58.764", "updatedDate": "2021-03-09T10:22:58.764+00:00"}, "personal": {"email": "michaela@gerlach-inc.mv", "phone": "(424)089-0260 x078", "lastName": "Fay", "addresses": [{"city": "Temecula", "region": "MN", "countryId": "US", "postalCode": "48023-1180", "addressLine1": "16685 Jacobson Junctions Suite 266", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Reta", "middleName": "Velma", "dateOfBirth": "1993-07-15T00:00:00.000+00:00", "mobilePhone": "464.863.9490 x63388", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "hubert", "createdDate": "2021-03-09T10:22:58.816+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:58.816+00:00", "enrollmentDate": "2015-08-19T00:00:00.000+00:00", "expirationDate": "2020-04-21T00:00:00.000+00:00"} 2021-03-09 10:22:58.764 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e dc13dcc6-2bda-412c-b046-1398d1becb75 {"id": "dc13dcc6-2bda-412c-b046-1398d1becb75", "type": "patron", "active": true, "barcode": "332606947540224", "metadata": {"createdDate": "2021-03-09T10:22:58.896", "updatedDate": "2021-03-09T10:22:58.896+00:00"}, "personal": {"email": "monroe@rau-beatty.wi.us", "phone": "841-726-9429 x12566", "lastName": "Hartmann", "addresses": [{"city": "Rosemead", "region": "CA", "countryId": "US", "postalCode": "35670-5987", "addressLine1": "69348 Geoffrey Station #437", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Neva", "dateOfBirth": "1947-05-07T00:00:00.000+00:00", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "connie", "createdDate": "2021-03-09T10:22:58.937+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:58.937+00:00", "enrollmentDate": "2017-10-14T00:00:00.000+00:00", "expirationDate": "2020-06-17T00:00:00.000+00:00"} 2021-03-09 10:22:58.896 \N 503a81cd-6c26-400f-b620-14c08943697c 550a06c3-8d0c-4ae3-a267-b32527272772 {"id": "550a06c3-8d0c-4ae3-a267-b32527272772", "type": "patron", "active": true, "barcode": "791893588531159", "metadata": {"createdDate": "2021-03-09T10:22:59.022", "updatedDate": "2021-03-09T10:22:59.022+00:00"}, "personal": {"email": "hester@grant-sporer-and-hodkiewicz.pa.us", "phone": "1-993-714-8622", "lastName": "Krajcik", "addresses": [{"city": "Elkhart", "region": "MO", "countryId": "US", "postalCode": "19092", "addressLine1": "93774 Lura Tunnel", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Edgardo", "middleName": "Arne", "dateOfBirth": "1999-07-16T00:00:00.000+00:00", "mobilePhone": "(335)765-6908 x82927", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "anais", "createdDate": "2021-03-09T10:22:59.064+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:59.064+00:00", "enrollmentDate": "2017-12-28T00:00:00.000+00:00", "expirationDate": "2019-07-31T00:00:00.000+00:00"} 2021-03-09 10:22:59.022 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 292451b5-0026-4463-a762-d43fc6cc9122 {"id": "292451b5-0026-4463-a762-d43fc6cc9122", "type": "patron", "active": false, "barcode": "234963930375499", "metadata": {"createdDate": "2021-03-09T10:22:59.149", "updatedDate": "2021-03-09T10:22:59.149+00:00"}, "personal": {"email": "ashley@kilback-kris-and-cronin.org", "phone": "(035)721-3119 x235", "lastName": "Emard", "addresses": [{"city": "Tustin", "region": "AE", "countryId": "US", "postalCode": "76024", "addressLine1": "68822 Sawayn Point Suite 289", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Antonina", "middleName": "Marques", "dateOfBirth": "1960-09-18T00:00:00.000+00:00", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "dahlia", "createdDate": "2021-03-09T10:22:59.196+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:59.196+00:00", "enrollmentDate": "2017-09-06T00:00:00.000+00:00", "expirationDate": "2019-03-16T00:00:00.000+00:00"} 2021-03-09 10:22:59.149 \N 3684a786-6671-4268-8ed0-9db82ebca60b c97f19d3-7a82-4891-aaa1-de087a9a903f {"id": "c97f19d3-7a82-4891-aaa1-de087a9a903f", "type": "patron", "active": false, "barcode": "617842747960086", "metadata": {"createdDate": "2021-03-09T10:22:59.276", "updatedDate": "2021-03-09T10:22:59.276+00:00"}, "personal": {"email": "leilani@rutherford-ortiz-and-halvorson.cm", "phone": "058-815-1186 x99192", "lastName": "Klocko", "addresses": [{"city": "Nenana", "region": "GU", "countryId": "US", "postalCode": "65778", "addressLine1": "16469 Champlin Walks Apt. 641", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Julianne", "dateOfBirth": "1981-02-07T00:00:00.000+00:00", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "novella", "createdDate": "2021-03-09T10:22:59.324+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:59.324+00:00", "enrollmentDate": "2016-09-06T00:00:00.000+00:00", "expirationDate": "2019-10-09T00:00:00.000+00:00"} 2021-03-09 10:22:59.276 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e c2f1cefa-2ebb-4a7a-a420-84dcf2f89cf5 {"id": "c2f1cefa-2ebb-4a7a-a420-84dcf2f89cf5", "type": "patron", "active": true, "barcode": "301995528428356", "metadata": {"createdDate": "2021-03-09T10:22:59.401", "updatedDate": "2021-03-09T10:22:59.401+00:00"}, "personal": {"email": "hester@sauer-kuphal.as", "phone": "413.255.5895", "lastName": "Medhurst", "addresses": [{"city": "Montebello", "region": "MS", "countryId": "US", "postalCode": "88812", "addressLine1": "42351 Andre Island Suite 619", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Ada", "middleName": "Brionna", "dateOfBirth": "1973-04-18T00:00:00.000+00:00", "mobilePhone": "1-211-174-2359", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "gladyce", "createdDate": "2021-03-09T10:22:59.446+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:59.446+00:00", "enrollmentDate": "2016-06-17T00:00:00.000+00:00", "expirationDate": "2020-08-06T00:00:00.000+00:00"} 2021-03-09 10:22:59.401 \N 3684a786-6671-4268-8ed0-9db82ebca60b ea3a1605-a930-4183-b04e-0b2fca3ae094 {"id": "ea3a1605-a930-4183-b04e-0b2fca3ae094", "type": "patron", "active": true, "barcode": "683657854071142", "metadata": {"createdDate": "2021-03-09T10:22:59.525", "updatedDate": "2021-03-09T10:22:59.525+00:00"}, "personal": {"email": "trinity@tremblay-dare-and-conroy.va.us", "phone": "272.300.8720 x0852", "lastName": "Stanton", "addresses": [{"city": "Barrow", "region": "ND", "countryId": "US", "postalCode": "58178-3918", "addressLine1": "73865 Building W", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Ashley", "dateOfBirth": "1977-01-12T00:00:00.000+00:00", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "adolphus", "createdDate": "2021-03-09T10:22:59.568+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:22:59.568+00:00", "enrollmentDate": "2017-03-04T00:00:00.000+00:00", "expirationDate": "2020-02-22T00:00:00.000+00:00"} 2021-03-09 10:22:59.525 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 430f49de-6848-4cba-886a-4902cb9b887d {"id": "430f49de-6848-4cba-886a-4902cb9b887d", "type": "patron", "active": false, "barcode": "458743723690059", "metadata": {"createdDate": "2021-03-09T10:22:59.647", "updatedDate": "2021-03-09T10:22:59.647+00:00"}, "personal": {"email": "kraig@willms-gerlach.mx", "phone": "1-277-648-2924 x441", "lastName": "Rogahn", "addresses": [{"city": "Newport Beach", "region": "OK", "countryId": "US", "postalCode": "42658", "addressLine1": "43269 Taylor Fork #535", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Brandon", "middleName": "Sharon", "dateOfBirth": "1981-05-19T00:00:00.000+00:00", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "johanna", "createdDate": "2021-03-09T10:22:59.702+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:59.702+00:00", "enrollmentDate": "2017-09-17T00:00:00.000+00:00", "expirationDate": "2020-04-11T00:00:00.000+00:00"} 2021-03-09 10:22:59.647 \N 3684a786-6671-4268-8ed0-9db82ebca60b 1dbc9318-9718-4e9d-b32a-6684cf258910 {"id": "1dbc9318-9718-4e9d-b32a-6684cf258910", "type": "patron", "active": false, "barcode": "310215644261340", "metadata": {"createdDate": "2021-03-09T10:22:59.794", "updatedDate": "2021-03-09T10:22:59.794+00:00"}, "personal": {"email": "dorthy@reichert-harris.sd.us", "phone": "458.172.4715", "lastName": "Prohaska", "addresses": [{"city": "Bakersfield", "region": "CT", "countryId": "US", "postalCode": "90895-6823", "addressLine1": "46517 Frami Prairie Apt. 523", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Yasmine", "middleName": "Karlee", "dateOfBirth": "1947-08-27T00:00:00.000+00:00", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "jillian", "createdDate": "2021-03-09T10:22:59.838+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:22:59.838+00:00", "enrollmentDate": "2016-10-19T00:00:00.000+00:00", "expirationDate": "2019-04-18T00:00:00.000+00:00"} 2021-03-09 10:22:59.794 \N 503a81cd-6c26-400f-b620-14c08943697c f303e908-30dc-4139-9542-4a4e206c4b96 {"id": "f303e908-30dc-4139-9542-4a4e206c4b96", "type": "patron", "active": true, "barcode": "755491898290173", "metadata": {"createdDate": "2021-03-09T10:22:59.917", "updatedDate": "2021-03-09T10:22:59.917+00:00"}, "personal": {"email": "noel@rath-oconner-and-hackett.om", "phone": "374-165-3103", "lastName": "Johnson", "addresses": [{"city": "Santa Rosa", "region": "NC", "countryId": "US", "postalCode": "59268-9757", "addressLine1": "71859 Mariela Radial", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Amira", "dateOfBirth": "1976-01-13T00:00:00.000+00:00", "mobilePhone": "1-315-820-3371 x235", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "zackery", "createdDate": "2021-03-09T10:22:59.961+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:22:59.961+00:00", "enrollmentDate": "2017-05-13T00:00:00.000+00:00", "expirationDate": "2020-02-03T00:00:00.000+00:00"} 2021-03-09 10:22:59.917 \N 3684a786-6671-4268-8ed0-9db82ebca60b 45e77e83-60a3-4031-89d5-81222043dec6 {"id": "45e77e83-60a3-4031-89d5-81222043dec6", "type": "patron", "active": true, "barcode": "921184965279358", "metadata": {"createdDate": "2021-03-09T10:23:00.047", "updatedDate": "2021-03-09T10:23:00.047+00:00"}, "personal": {"email": "jammie@beatty-kris.ba", "phone": "298-168-0709", "lastName": "Stanton", "addresses": [{"city": "Scottsdale", "region": "OK", "countryId": "US", "postalCode": "47813", "addressLine1": "96393 Herzog Tunnel", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Darren", "middleName": "Macey", "dateOfBirth": "1983-09-20T00:00:00.000+00:00", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "marquis", "createdDate": "2021-03-09T10:23:00.092+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:23:00.092+00:00", "enrollmentDate": "2017-12-25T00:00:00.000+00:00", "expirationDate": "2020-09-19T00:00:00.000+00:00"} 2021-03-09 10:23:00.047 \N 3684a786-6671-4268-8ed0-9db82ebca60b 15fa3eda-f495-496c-b21e-4f281b38a3ef {"id": "15fa3eda-f495-496c-b21e-4f281b38a3ef", "type": "patron", "active": true, "barcode": "971460036650480", "metadata": {"createdDate": "2021-03-09T10:23:00.171", "updatedDate": "2021-03-09T10:23:00.171+00:00"}, "personal": {"email": "esteban@schultz-hettinger.in.us", "phone": "1-141-644-4590", "lastName": "Koss", "addresses": [{"city": "Hoover", "region": "VA", "countryId": "US", "postalCode": "54548-8284", "addressLine1": "27971 Floor 5", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Narciso", "dateOfBirth": "1948-04-28T00:00:00.000+00:00", "mobilePhone": "(985)426-5134 x560", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "koss", "createdDate": "2021-03-09T10:23:00.220+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:23:00.220+00:00", "enrollmentDate": "2017-10-23T00:00:00.000+00:00", "expirationDate": "2020-03-22T00:00:00.000+00:00"} 2021-03-09 10:23:00.171 \N 3684a786-6671-4268-8ed0-9db82ebca60b 2084e201-b0da-4ac3-b3ae-873c48596093 {"id": "2084e201-b0da-4ac3-b3ae-873c48596093", "type": "patron", "active": true, "barcode": "827149125240481", "metadata": {"createdDate": "2021-03-09T10:23:00.306", "updatedDate": "2021-03-09T10:23:00.306+00:00"}, "personal": {"email": "sadye@schoen-bins.sh", "phone": "340-020-1918 x953", "lastName": "McCullough", "addresses": [{"city": "San Fernando", "region": "PW", "countryId": "US", "postalCode": "63197-6404", "addressLine1": "50258 Dagmar Station", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Giovani", "middleName": "Cletus", "dateOfBirth": "1999-09-06T00:00:00.000+00:00", "mobilePhone": "116.581.4518 x13462", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "winifred", "createdDate": "2021-03-09T10:23:00.349+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:23:00.349+00:00", "enrollmentDate": "2015-04-28T00:00:00.000+00:00", "expirationDate": "2020-06-20T00:00:00.000+00:00"} 2021-03-09 10:23:00.306 \N 503a81cd-6c26-400f-b620-14c08943697c 4adf499e-c954-4bf9-9261-26720608e120 {"id": "4adf499e-c954-4bf9-9261-26720608e120", "type": "patron", "active": true, "barcode": "214290413046203", "metadata": {"createdDate": "2021-03-09T10:23:00.434", "updatedDate": "2021-03-09T10:23:00.434+00:00"}, "personal": {"email": "mabelle@stanton-schaefer.sb", "phone": "225.278.0004", "lastName": "Wintheiser", "addresses": [{"city": "Pine Bluff", "region": "SC", "countryId": "US", "postalCode": "81092-1784", "addressLine1": "61000 Lower", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Melody", "middleName": "Marcellus", "dateOfBirth": "1972-01-16T00:00:00.000+00:00", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "edwina", "createdDate": "2021-03-09T10:23:00.480+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:23:00.480+00:00", "enrollmentDate": "2018-01-08T00:00:00.000+00:00", "expirationDate": "2021-01-21T00:00:00.000+00:00"} 2021-03-09 10:23:00.434 \N 503a81cd-6c26-400f-b620-14c08943697c 8af5eaca-d164-4a5f-9941-0467c6facffa {"id": "8af5eaca-d164-4a5f-9941-0467c6facffa", "type": "patron", "active": false, "barcode": "894793248408369", "metadata": {"createdDate": "2021-03-09T10:23:00.557", "updatedDate": "2021-03-09T10:23:00.557+00:00"}, "personal": {"email": "cody@schroeder-swaniawski.ks.us", "phone": "226-832-0548", "lastName": "Predovic", "addresses": [{"city": "Juneau", "region": "CT", "countryId": "US", "postalCode": "24505-1733", "addressLine1": "75651 Nikko Run #792", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Cornell", "dateOfBirth": "2000-08-09T00:00:00.000+00:00", "mobilePhone": "409.395.8705 x1313", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "newell", "createdDate": "2021-03-09T10:23:00.605+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:23:00.605+00:00", "enrollmentDate": "2018-05-29T00:00:00.000+00:00", "expirationDate": "2021-01-19T00:00:00.000+00:00"} 2021-03-09 10:23:00.557 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e f57c13f1-6114-41b2-aa6f-33045068d6be {"id": "f57c13f1-6114-41b2-aa6f-33045068d6be", "type": "patron", "active": false, "barcode": "384535810243711", "metadata": {"createdDate": "2021-03-09T10:23:00.688", "updatedDate": "2021-03-09T10:23:00.688+00:00"}, "personal": {"email": "jedediah@torp-wiegand-and-schuppe.ga.us", "phone": "1-562-888-1713 x03714", "lastName": "Jaskolski", "addresses": [{"city": "Westlake Village", "region": "ME", "countryId": "US", "postalCode": "75050-0529", "addressLine1": "75369 Beulah Via Apt. 975", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Theresa", "dateOfBirth": "1995-07-22T00:00:00.000+00:00", "mobilePhone": "1-447-181-6690 x90817", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "dalton", "createdDate": "2021-03-09T10:23:00.733+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:23:00.733+00:00", "enrollmentDate": "2015-06-09T00:00:00.000+00:00", "expirationDate": "2019-12-04T00:00:00.000+00:00"} 2021-03-09 10:23:00.688 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 04e1cda1-a049-463b-97af-98c59a8fd806 {"id": "04e1cda1-a049-463b-97af-98c59a8fd806", "type": "patron", "active": true, "barcode": "317737116591409", "metadata": {"createdDate": "2021-03-09T10:23:00.814", "updatedDate": "2021-03-09T10:23:00.814+00:00"}, "personal": {"email": "syble@deckow-and-sons.mz", "phone": "(731)414-4227", "lastName": "Yost", "addresses": [{"city": "Sacramento", "region": "MA", "countryId": "US", "postalCode": "71689", "addressLine1": "10026 Williamson Ridge", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Cristian", "middleName": "Gregory", "dateOfBirth": "1948-09-27T00:00:00.000+00:00", "mobilePhone": "679-310-5840 x445", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "nicola", "createdDate": "2021-03-09T10:23:00.855+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:23:00.855+00:00", "enrollmentDate": "2016-05-01T00:00:00.000+00:00", "expirationDate": "2019-04-22T00:00:00.000+00:00"} 2021-03-09 10:23:00.814 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 1c65f9c5-5970-48bb-aa72-82ef96fc145e {"id": "1c65f9c5-5970-48bb-aa72-82ef96fc145e", "type": "patron", "active": true, "barcode": "698898127008508", "metadata": {"createdDate": "2021-03-09T10:23:00.931", "updatedDate": "2021-03-09T10:23:00.931+00:00"}, "personal": {"email": "fleta@okuneva-group.tr", "phone": "1-968-830-7181", "lastName": "Koss", "addresses": [{"city": "Kettering", "region": "NC", "countryId": "US", "postalCode": "43631-4130", "addressLine1": "74541 Wuckert Corner #072", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Chet", "dateOfBirth": "2007-04-23T00:00:00.000+00:00", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "josianne", "createdDate": "2021-03-09T10:23:00.976+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:23:00.976+00:00", "enrollmentDate": "2018-01-13T00:00:00.000+00:00", "expirationDate": "2019-05-20T00:00:00.000+00:00"} 2021-03-09 10:23:00.931 \N 3684a786-6671-4268-8ed0-9db82ebca60b 66fe5bd9-1129-4b40-b54d-05b4c358463c {"id": "66fe5bd9-1129-4b40-b54d-05b4c358463c", "type": "patron", "active": true, "barcode": "623317241177726", "metadata": {"createdDate": "2021-03-09T10:23:01.067", "updatedDate": "2021-03-09T10:23:01.067+00:00"}, "personal": {"email": "petra@herzog-group.mu", "phone": "705.954.0099 x5114", "lastName": "Koss", "addresses": [{"city": "Montgomery", "region": "MO", "countryId": "US", "postalCode": "06036", "addressLine1": "14567 Smitham Path", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Jazlyn", "middleName": "Kaya", "dateOfBirth": "2006-10-25T00:00:00.000+00:00", "mobilePhone": "362.131.9602 x6297", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "guiseppe", "createdDate": "2021-03-09T10:23:01.116+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:23:01.116+00:00", "enrollmentDate": "2018-10-10T00:00:00.000+00:00", "expirationDate": "2020-05-14T00:00:00.000+00:00"} 2021-03-09 10:23:01.067 \N 3684a786-6671-4268-8ed0-9db82ebca60b 5f9bb63a-66f1-47eb-bc19-f182af2fc3e7 {"id": "5f9bb63a-66f1-47eb-bc19-f182af2fc3e7", "type": "patron", "active": true, "barcode": "574640275318167", "metadata": {"createdDate": "2021-03-09T10:23:01.2", "updatedDate": "2021-03-09T10:23:01.200+00:00"}, "personal": {"email": "tiffany@klocko-wolf-and-marks.mc", "phone": "(581)973-3149 x2722", "lastName": "Koss", "addresses": [{"city": "Daly City", "region": "GA", "countryId": "US", "postalCode": "49924-4645", "addressLine1": "86782 Schmitt Square Apt. 508", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Vito", "dateOfBirth": "1956-01-02T00:00:00.000+00:00", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "jaeden", "createdDate": "2021-03-09T10:23:01.249+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:23:01.249+00:00", "enrollmentDate": "2015-04-04T00:00:00.000+00:00", "expirationDate": "2020-08-19T00:00:00.000+00:00"} 2021-03-09 10:23:01.2 \N ad0bc554-d5bc-463c-85d1-5562127ae91b 67e40b72-66ca-4113-bed9-17a40bc448e0 {"id": "67e40b72-66ca-4113-bed9-17a40bc448e0", "type": "patron", "active": true, "barcode": "966003183343282", "metadata": {"createdDate": "2021-03-09T10:23:01.329", "updatedDate": "2021-03-09T10:23:01.329+00:00"}, "personal": {"email": "abraham@little-spinka-and-koepp.pr", "phone": "1-181-329-3026 x244", "lastName": "Herman", "addresses": [{"city": "San Marino", "region": "MI", "countryId": "US", "postalCode": "92298", "addressLine1": "20919 Adolf Vista Suite 060", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Mylene", "dateOfBirth": "2006-09-25T00:00:00.000+00:00", "mobilePhone": "(577)033-8256 x896", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "marlee", "createdDate": "2021-03-09T10:23:01.376+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:23:01.376+00:00", "enrollmentDate": "2017-02-17T00:00:00.000+00:00", "expirationDate": "2019-11-21T00:00:00.000+00:00"} 2021-03-09 10:23:01.329 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 43f60acf-2557-48e9-b457-12783925444f {"id": "43f60acf-2557-48e9-b457-12783925444f", "type": "patron", "active": true, "barcode": "19683671814242", "metadata": {"createdDate": "2021-03-09T10:23:01.454", "updatedDate": "2021-03-09T10:23:01.454+00:00"}, "personal": {"email": "jaylin@moen-goyette-and-greenholt.ar", "phone": "(285)962-0956 x0888", "lastName": "Sporer", "addresses": [{"city": "Glendale", "region": "IA", "countryId": "US", "postalCode": "75580", "addressLine1": "93703 Floor 0268", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Maud", "middleName": "Keaton", "dateOfBirth": "1996-02-05T00:00:00.000+00:00", "mobilePhone": "917-076-5849 x730", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "victoria", "createdDate": "2021-03-09T10:23:01.494+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:23:01.494+00:00", "enrollmentDate": "2017-01-29T00:00:00.000+00:00", "expirationDate": "2020-05-13T00:00:00.000+00:00"} 2021-03-09 10:23:01.454 \N 3684a786-6671-4268-8ed0-9db82ebca60b 6e74dfe1-2eca-48bd-89ce-9fe1633920a3 {"id": "6e74dfe1-2eca-48bd-89ce-9fe1633920a3", "type": "patron", "active": true, "barcode": "70567676297152", "metadata": {"createdDate": "2021-03-09T10:23:01.572", "updatedDate": "2021-03-09T10:23:01.572+00:00"}, "personal": {"email": "baby@abernathy-and-sons.cm", "phone": "783.614.3439", "lastName": "Murphy", "addresses": [{"city": "Bell", "region": "DC", "countryId": "US", "postalCode": "14504-7792", "addressLine1": "85846 Block Corner", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Bettye", "dateOfBirth": "1968-01-08T00:00:00.000+00:00", "mobilePhone": "591.690.6025 x9830", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "kaley", "createdDate": "2021-03-09T10:23:01.620+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:23:01.620+00:00", "enrollmentDate": "2017-04-14T00:00:00.000+00:00", "expirationDate": "2020-05-10T00:00:00.000+00:00"} 2021-03-09 10:23:01.572 \N 3684a786-6671-4268-8ed0-9db82ebca60b 0b6d1482-de21-4643-ae5b-90b4c7164c4a {"id": "0b6d1482-de21-4643-ae5b-90b4c7164c4a", "type": "patron", "active": true, "barcode": "231436162840271", "metadata": {"createdDate": "2021-03-09T10:23:01.7", "updatedDate": "2021-03-09T10:23:01.700+00:00"}, "personal": {"email": "daisy@schulist-fisher.il.us", "phone": "922-735-6119 x64894", "lastName": "Schuster", "addresses": [{"city": "Santa Barbara", "region": "PA", "countryId": "US", "postalCode": "28063-5444", "addressLine1": "08150 Prince Motorway Suite 676", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Felton", "dateOfBirth": "2012-03-10T00:00:00.000+00:00", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "myrtice", "createdDate": "2021-03-09T10:23:01.749+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:23:01.749+00:00", "enrollmentDate": "2015-06-15T00:00:00.000+00:00", "expirationDate": "2020-04-30T00:00:00.000+00:00"} 2021-03-09 10:23:01.7 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e a98abce3-be00-4d9a-a66a-0593d27b41e0 {"id": "a98abce3-be00-4d9a-a66a-0593d27b41e0", "type": "patron", "active": true, "barcode": "267941186130073", "metadata": {"createdDate": "2021-03-09T10:23:01.831", "updatedDate": "2021-03-09T10:23:01.831+00:00"}, "personal": {"email": "justine@cole-group.zw", "phone": "1-979-995-5610 x758", "lastName": "Kovacek", "addresses": [{"city": "Oakland", "region": "GU", "countryId": "US", "postalCode": "15731-4068", "addressLine1": "88286 Dicki Crescent Suite 579", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Meredith", "dateOfBirth": "1975-11-25T00:00:00.000+00:00", "mobilePhone": "038.348.1149 x50914", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "lula", "createdDate": "2021-03-09T10:23:01.873+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:23:01.873+00:00", "enrollmentDate": "2016-06-28T00:00:00.000+00:00", "expirationDate": "2019-12-03T00:00:00.000+00:00"} 2021-03-09 10:23:01.831 \N ad0bc554-d5bc-463c-85d1-5562127ae91b e14b1bc1-8784-4b55-bfbe-e5ec8ce0b07a {"id": "e14b1bc1-8784-4b55-bfbe-e5ec8ce0b07a", "type": "patron", "active": false, "barcode": "26132887126792", "metadata": {"createdDate": "2021-03-09T10:23:01.955", "updatedDate": "2021-03-09T10:23:01.955+00:00"}, "personal": {"email": "virginie@haag-rippin.nu", "phone": "921-095-6643", "lastName": "Sanford", "addresses": [{"city": "Monterey Park", "region": "NM", "countryId": "US", "postalCode": "42517-3120", "addressLine1": "45782 Stop S", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Edmond", "middleName": "Sheldon", "dateOfBirth": "1996-11-25T00:00:00.000+00:00", "mobilePhone": "023.988.9608", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "adele", "createdDate": "2021-03-09T10:23:02.008+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:23:02.008+00:00", "enrollmentDate": "2015-04-19T00:00:00.000+00:00", "expirationDate": "2020-08-05T00:00:00.000+00:00"} 2021-03-09 10:23:01.955 \N 3684a786-6671-4268-8ed0-9db82ebca60b e59bc21a-884e-42a2-8792-163efc3662e7 {"id": "e59bc21a-884e-42a2-8792-163efc3662e7", "type": "patron", "active": true, "barcode": "144826156017341", "metadata": {"createdDate": "2021-03-09T10:23:02.093", "updatedDate": "2021-03-09T10:23:02.093+00:00"}, "personal": {"email": "rollin@jacobson-emmerich-and-schaefer.kg", "phone": "(071)378-8133 x66872", "lastName": "Dickinson", "addresses": [{"city": "Toledo", "region": "MN", "countryId": "US", "postalCode": "49708", "addressLine1": "76540 Jaden Meadows #999", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Francisca", "middleName": "Dock", "dateOfBirth": "1945-12-20T00:00:00.000+00:00", "mobilePhone": "373-226-0411", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "theodora", "createdDate": "2021-03-09T10:23:02.143+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:23:02.143+00:00", "enrollmentDate": "2016-08-13T00:00:00.000+00:00", "expirationDate": "2020-03-18T00:00:00.000+00:00"} 2021-03-09 10:23:02.093 \N 3684a786-6671-4268-8ed0-9db82ebca60b 197f8e91-5110-4487-ad36-b3d21a66059d {"id": "197f8e91-5110-4487-ad36-b3d21a66059d", "type": "patron", "active": true, "barcode": "110408495506241", "metadata": {"createdDate": "2021-03-09T10:23:02.23", "updatedDate": "2021-03-09T10:23:02.230+00:00"}, "personal": {"email": "melody@zieme-green.lr", "phone": "(215)223-7640 x150", "lastName": "Koss", "addresses": [{"city": "Mentor", "region": "MN", "countryId": "US", "postalCode": "56741-6759", "addressLine1": "80277 Wilkinson Rapids #211", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Jordane", "middleName": "Dolores", "dateOfBirth": "1990-06-16T00:00:00.000+00:00", "mobilePhone": "(589)923-3094 x7774", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "kirk", "createdDate": "2021-03-09T10:23:02.275+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:23:02.275+00:00", "enrollmentDate": "2015-12-16T00:00:00.000+00:00", "expirationDate": "2020-10-26T00:00:00.000+00:00"} 2021-03-09 10:23:02.23 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 8e9d1a69-9745-4ad4-a8e8-6841a9441b40 {"id": "8e9d1a69-9745-4ad4-a8e8-6841a9441b40", "type": "patron", "active": false, "barcode": "348406231338938", "metadata": {"createdDate": "2021-03-09T10:23:02.356", "updatedDate": "2021-03-09T10:23:02.356+00:00"}, "personal": {"email": "constance@wunsch-group.ki", "phone": "1-995-399-4325", "lastName": "Sipes", "addresses": [{"city": "Toledo", "region": "MI", "countryId": "US", "postalCode": "34540", "addressLine1": "66693 Collier Rapids #486", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Deondre", "middleName": "Mafalda", "dateOfBirth": "1989-03-07T00:00:00.000+00:00", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "bella", "createdDate": "2021-03-09T10:23:02.405+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:23:02.405+00:00", "enrollmentDate": "2018-01-06T00:00:00.000+00:00", "expirationDate": "2020-03-07T00:00:00.000+00:00"} 2021-03-09 10:23:02.356 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e b4fa5d79-4af6-4623-9331-fabdfee79e0c {"id": "b4fa5d79-4af6-4623-9331-fabdfee79e0c", "type": "patron", "active": true, "barcode": "453819069972642", "metadata": {"createdDate": "2021-03-09T10:23:02.485", "updatedDate": "2021-03-09T10:23:02.485+00:00"}, "personal": {"email": "alisa@murray-stoltenberg.ls", "phone": "314.644.6648", "lastName": "Koss", "addresses": [{"city": "Westminster", "region": "WI", "countryId": "US", "postalCode": "64224-5588", "addressLine1": "08425 Schimmel Streets #234", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Aylin", "middleName": "Velda", "dateOfBirth": "1965-12-07T00:00:00.000+00:00", "mobilePhone": "1-394-292-7906", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "matilda", "createdDate": "2021-03-09T10:23:02.535+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:23:02.535+00:00", "enrollmentDate": "2018-12-12T00:00:00.000+00:00", "expirationDate": "2020-06-28T00:00:00.000+00:00"} 2021-03-09 10:23:02.485 \N 503a81cd-6c26-400f-b620-14c08943697c 137d4cbd-00ff-4332-97cb-88373fa9b556 {"id": "137d4cbd-00ff-4332-97cb-88373fa9b556", "type": "patron", "active": true, "barcode": "791638293271066", "metadata": {"createdDate": "2021-03-09T10:23:02.613", "updatedDate": "2021-03-09T10:23:02.613+00:00"}, "personal": {"email": "dejon@wilkinson-ritchie-and-heaney.ge", "phone": "(446)134-4449 x6505", "lastName": "Marks", "addresses": [{"city": "Long Beach", "region": "DC", "countryId": "US", "postalCode": "65853-6624", "addressLine1": "04307 Wilburn Courts", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Aiyana", "middleName": "Annie", "dateOfBirth": "1953-04-05T00:00:00.000+00:00", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "elta", "createdDate": "2021-03-09T10:23:02.659+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:23:02.659+00:00", "enrollmentDate": "2015-10-23T00:00:00.000+00:00", "expirationDate": "2019-10-04T00:00:00.000+00:00"} 2021-03-09 10:23:02.613 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 368b8b4a-c3c2-436c-9cba-95dcac52ebf9 {"id": "368b8b4a-c3c2-436c-9cba-95dcac52ebf9", "type": "patron", "active": true, "barcode": "943721780387221", "metadata": {"createdDate": "2021-03-09T10:23:02.748", "updatedDate": "2021-03-09T10:23:02.748+00:00"}, "personal": {"email": "leora@donnelly-adams-and-bode.sn", "phone": "559.446.5166 x7425", "lastName": "Little", "addresses": [{"city": "Artesia", "region": "ME", "countryId": "US", "postalCode": "13942", "addressLine1": "51528 Green Lakes Suite 741", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Ralph", "middleName": "Demetrius", "dateOfBirth": "1985-12-24T00:00:00.000+00:00", "mobilePhone": "(969)443-0354", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "buck", "createdDate": "2021-03-09T10:23:02.790+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:23:02.790+00:00", "enrollmentDate": "2015-10-28T00:00:00.000+00:00", "expirationDate": "2020-09-16T00:00:00.000+00:00"} 2021-03-09 10:23:02.748 \N 503a81cd-6c26-400f-b620-14c08943697c 960ab857-c8c7-4445-8d24-1e4c33de3e86 {"id": "960ab857-c8c7-4445-8d24-1e4c33de3e86", "type": "patron", "active": true, "barcode": "2221611715057", "metadata": {"createdDate": "2021-03-09T10:23:02.866", "updatedDate": "2021-03-09T10:23:02.866+00:00"}, "personal": {"email": "ally@gleichner-williamson-and-kuhic.com", "phone": "1-119-512-0959 x183", "lastName": "Smitham", "addresses": [{"city": "Chico", "region": "MI", "countryId": "US", "postalCode": "97634-7181", "addressLine1": "47577 Lehner Estates", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Eduardo", "middleName": "Emmy", "dateOfBirth": "1990-02-15T00:00:00.000+00:00", "mobilePhone": "367.204.6258", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "jerald", "createdDate": "2021-03-09T10:23:02.908+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:23:02.908+00:00", "enrollmentDate": "2015-06-16T00:00:00.000+00:00", "expirationDate": "2020-01-10T00:00:00.000+00:00"} 2021-03-09 10:23:02.866 \N ad0bc554-d5bc-463c-85d1-5562127ae91b 54f65a75-f35b-4f56-86a6-fa4a3d957e57 {"id": "54f65a75-f35b-4f56-86a6-fa4a3d957e57", "type": "patron", "active": true, "barcode": "864467817890954", "metadata": {"createdDate": "2021-03-09T10:23:02.994", "updatedDate": "2021-03-09T10:23:02.994+00:00"}, "personal": {"email": "jermey@hessel-hettinger.ok.us", "phone": "751-145-4052 x783", "lastName": "Mueller", "addresses": [{"city": "Akron", "region": "KY", "countryId": "US", "postalCode": "11104", "addressLine1": "03749 Dorothea Prairie Suite 396", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Jackeline", "dateOfBirth": "1947-10-15T00:00:00.000+00:00", "mobilePhone": "1-585-529-3409", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "adah", "createdDate": "2021-03-09T10:23:03.037+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:23:03.037+00:00", "enrollmentDate": "2017-05-12T00:00:00.000+00:00", "expirationDate": "2021-03-10T00:00:00.000+00:00"} 2021-03-09 10:23:02.994 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 22b0e29a-cc5d-456b-b272-b521ad5d2a39 {"id": "22b0e29a-cc5d-456b-b272-b521ad5d2a39", "type": "patron", "active": true, "barcode": "220289407319601", "metadata": {"createdDate": "2021-03-09T10:23:03.121", "updatedDate": "2021-03-09T10:23:03.121+00:00"}, "personal": {"email": "alia@maggio-lubowitz.mn.us", "phone": "806.796.2673 x251", "lastName": "Howell", "addresses": [{"city": "Lexington", "region": "FL", "countryId": "US", "postalCode": "24713", "addressLine1": "44192 Hoeger Springs", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Wendell", "middleName": "Romaine", "dateOfBirth": "1962-02-08T00:00:00.000+00:00", "mobilePhone": "1-833-306-7200 x47071", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "cierra", "createdDate": "2021-03-09T10:23:03.168+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:23:03.168+00:00", "enrollmentDate": "2017-03-18T00:00:00.000+00:00", "expirationDate": "2020-01-16T00:00:00.000+00:00"} 2021-03-09 10:23:03.121 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 50e30476-ee93-4b16-a53c-27ce2c4b49d7 {"id": "50e30476-ee93-4b16-a53c-27ce2c4b49d7", "type": "patron", "active": true, "barcode": "883315883746696", "metadata": {"createdDate": "2021-03-09T10:23:03.261", "updatedDate": "2021-03-09T10:23:03.261+00:00"}, "personal": {"email": "lucie@moore-bradtke.gh", "phone": "1-120-262-3616", "lastName": "Okuneva", "addresses": [{"city": "Mission Viejo", "region": "UT", "countryId": "US", "postalCode": "91999-5314", "addressLine1": "19156 Fatima Cliff", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Hailey", "middleName": "Ronny", "dateOfBirth": "1989-09-23T00:00:00.000+00:00", "mobilePhone": "656-639-3081", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "niko", "createdDate": "2021-03-09T10:23:03.307+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:23:03.307+00:00", "enrollmentDate": "2019-01-24T00:00:00.000+00:00", "expirationDate": "2019-09-30T00:00:00.000+00:00"} 2021-03-09 10:23:03.261 \N 3684a786-6671-4268-8ed0-9db82ebca60b 3387893c-7bde-4d2f-9ad2-d4974b3e959e {"id": "3387893c-7bde-4d2f-9ad2-d4974b3e959e", "type": "patron", "active": false, "barcode": "236808330073397", "metadata": {"createdDate": "2021-03-09T10:23:03.392", "updatedDate": "2021-03-09T10:23:03.392+00:00"}, "personal": {"email": "catherine@daugherty-and-sons.jo", "phone": "(269)998-3431 x559", "lastName": "Zulauf", "addresses": [{"city": "Owensboro", "region": "IN", "countryId": "US", "postalCode": "36952-8155", "addressLine1": "47414 Myrtle Vista", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Ezekiel", "middleName": "Clifford", "dateOfBirth": "1970-11-28T00:00:00.000+00:00", "mobilePhone": "(664)091-9434", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "jailyn", "createdDate": "2021-03-09T10:23:03.438+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:23:03.438+00:00", "enrollmentDate": "2017-01-05T00:00:00.000+00:00", "expirationDate": "2020-02-02T00:00:00.000+00:00"} 2021-03-09 10:23:03.392 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e d4849a05-4066-4129-ae56-3dfc39498e36 {"id": "d4849a05-4066-4129-ae56-3dfc39498e36", "type": "patron", "active": true, "barcode": "589667746643488", "metadata": {"createdDate": "2021-03-09T10:23:03.513", "updatedDate": "2021-03-09T10:23:03.513+00:00"}, "personal": {"email": "myrtie@treutel-beier.kz", "phone": "475-499-9830 x20253", "lastName": "Koss", "addresses": [{"city": "Nome", "region": "NY", "countryId": "US", "postalCode": "89907", "addressLine1": "63228 Alan Terrace", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Mohammad", "middleName": "Fatima", "dateOfBirth": "1958-09-18T00:00:00.000+00:00", "mobilePhone": "(503)015-6306", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "amelie", "createdDate": "2021-03-09T10:23:03.559+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:23:03.559+00:00", "enrollmentDate": "2016-12-02T00:00:00.000+00:00", "expirationDate": "2020-03-05T00:00:00.000+00:00"} 2021-03-09 10:23:03.513 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e fbc2b501-a8cc-43a7-8d8c-b68067b63a33 {"id": "fbc2b501-a8cc-43a7-8d8c-b68067b63a33", "type": "patron", "active": true, "barcode": "650368947981103", "metadata": {"createdDate": "2021-03-09T10:23:03.644", "updatedDate": "2021-03-09T10:23:03.644+00:00"}, "personal": {"email": "kian@reilly-beer.lr", "phone": "812-357-5454", "lastName": "Spencer", "addresses": [{"city": "La Palma", "region": "ME", "countryId": "US", "postalCode": "84320", "addressLine1": "18301 Daniel Field #705", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Hal", "middleName": "Otha", "dateOfBirth": "1993-03-21T00:00:00.000+00:00", "mobilePhone": "(233)630-1861 x9186", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "leon", "createdDate": "2021-03-09T10:23:03.691+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:23:03.691+00:00", "enrollmentDate": "2015-06-04T00:00:00.000+00:00", "expirationDate": "2020-04-30T00:00:00.000+00:00"} 2021-03-09 10:23:03.644 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e ef39251f-db4c-4253-9951-645735f84904 {"id": "ef39251f-db4c-4253-9951-645735f84904", "type": "patron", "active": true, "barcode": "197245848205728", "metadata": {"createdDate": "2021-03-09T10:23:03.778", "updatedDate": "2021-03-09T10:23:03.778+00:00"}, "personal": {"email": "ceasar@schroeder-hauck-and-barrows.es", "phone": "947-332-7963 x647", "lastName": "Funk", "addresses": [{"city": "San Diego", "region": "IN", "countryId": "US", "postalCode": "94029", "addressLine1": "91744 Durward Fall Apt. 907", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Agustina", "middleName": "Ricky", "dateOfBirth": "2006-01-13T00:00:00.000+00:00", "mobilePhone": "(746)171-3004 x0116", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "boyd", "createdDate": "2021-03-09T10:23:03.821+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:23:03.821+00:00", "enrollmentDate": "2017-01-22T00:00:00.000+00:00", "expirationDate": "2020-02-17T00:00:00.000+00:00"} 2021-03-09 10:23:03.778 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e eb81f274-3676-45a9-8e8d-8a151af2506b {"id": "eb81f274-3676-45a9-8e8d-8a151af2506b", "type": "patron", "active": true, "barcode": "832254191547811", "metadata": {"createdDate": "2021-03-09T10:23:03.909", "updatedDate": "2021-03-09T10:23:03.909+00:00"}, "personal": {"email": "harry@anderson-and-sons.nm.us", "phone": "322.197.9084 x03471", "lastName": "Koss", "addresses": [{"city": "La Cañada Flintridge", "region": "MN", "countryId": "US", "postalCode": "58065-8332", "addressLine1": "19478 Lower", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Elena", "dateOfBirth": "1950-03-13T00:00:00.000+00:00", "mobilePhone": "730.671.8900 x54982", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "alexandre", "createdDate": "2021-03-09T10:23:03.964+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:23:03.964+00:00", "enrollmentDate": "2017-08-09T00:00:00.000+00:00", "expirationDate": "2019-12-06T00:00:00.000+00:00"} 2021-03-09 10:23:03.909 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e b56b28b9-7f22-426e-a099-4f753be686fa {"id": "b56b28b9-7f22-426e-a099-4f753be686fa", "type": "patron", "active": true, "barcode": "170699227458857", "metadata": {"createdDate": "2021-03-09T10:23:04.052", "updatedDate": "2021-03-09T10:23:04.052+00:00"}, "personal": {"email": "sebastian@keeling-inc.yt", "phone": "511.615.4976 x7146", "lastName": "Hahn", "addresses": [{"city": "Torrance", "region": "MI", "countryId": "US", "postalCode": "57239", "addressLine1": "24827 Kilback Burg", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Augustus", "dateOfBirth": "2006-01-04T00:00:00.000+00:00", "mobilePhone": "631.312.6842 x4971", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "emmett", "createdDate": "2021-03-09T10:23:04.097+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:23:04.097+00:00", "enrollmentDate": "2018-11-15T00:00:00.000+00:00", "expirationDate": "2020-06-03T00:00:00.000+00:00"} 2021-03-09 10:23:04.052 \N ad0bc554-d5bc-463c-85d1-5562127ae91b 2338689d-f27e-49fd-8bce-9f9bf7be6ea0 {"id": "2338689d-f27e-49fd-8bce-9f9bf7be6ea0", "type": "patron", "active": false, "barcode": "792669427464190", "metadata": {"createdDate": "2021-03-09T10:23:04.184", "updatedDate": "2021-03-09T10:23:04.184+00:00"}, "personal": {"email": "ike@hintz-moen-and-buckridge.lc", "phone": "(064)078-4507 x6779", "lastName": "Emard", "addresses": [{"city": "Buena Park", "region": "CA", "countryId": "US", "postalCode": "24691-1071", "addressLine1": "11964 Lowe Haven #369", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Ciara", "middleName": "Hulda", "dateOfBirth": "1984-03-09T00:00:00.000+00:00", "mobilePhone": "1-609-887-2430", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "moshe", "createdDate": "2021-03-09T10:23:04.235+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:23:04.235+00:00", "enrollmentDate": "2017-05-21T00:00:00.000+00:00", "expirationDate": "2019-10-31T00:00:00.000+00:00"} 2021-03-09 10:23:04.184 \N 3684a786-6671-4268-8ed0-9db82ebca60b dd176277-5c2d-4310-bf2f-e45e312b5026 {"id": "dd176277-5c2d-4310-bf2f-e45e312b5026", "type": "patron", "active": false, "barcode": "405555412626725", "metadata": {"createdDate": "2021-03-09T10:23:04.316", "updatedDate": "2021-03-09T10:23:04.316+00:00"}, "personal": {"email": "friedrich@klocko-howe.af", "phone": "460-372-5620", "lastName": "Reinger", "addresses": [{"city": "Lakewood", "region": "KY", "countryId": "US", "postalCode": "49342", "addressLine1": "28117 Hand Valleys", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Caleigh", "middleName": "Maximillia", "dateOfBirth": "2003-07-27T00:00:00.000+00:00", "mobilePhone": "1-471-781-0194", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "herminia", "createdDate": "2021-03-09T10:23:04.362+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:23:04.362+00:00", "enrollmentDate": "2017-08-03T00:00:00.000+00:00", "expirationDate": "2020-06-23T00:00:00.000+00:00"} 2021-03-09 10:23:04.316 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 34a22ca8-9aff-4b1c-96c2-f908ddb068ae {"id": "34a22ca8-9aff-4b1c-96c2-f908ddb068ae", "type": "patron", "active": true, "barcode": "789081575594853", "metadata": {"createdDate": "2021-03-09T10:23:04.449", "updatedDate": "2021-03-09T10:23:04.449+00:00"}, "personal": {"email": "coty@white-gutmann.pe", "phone": "(067)045-1942 x839", "lastName": "Wisozk", "addresses": [{"city": "Artesia", "region": "DC", "countryId": "US", "postalCode": "13289-0988", "addressLine1": "32195 Pfeffer Lodge", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Glenda", "dateOfBirth": "1999-10-14T00:00:00.000+00:00", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "glenda", "createdDate": "2021-03-09T10:23:04.495+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:23:04.495+00:00", "enrollmentDate": "2018-01-01T00:00:00.000+00:00", "expirationDate": "2019-05-17T00:00:00.000+00:00"} 2021-03-09 10:23:04.449 \N 3684a786-6671-4268-8ed0-9db82ebca60b 6ff36aa8-c68d-42c9-b68b-ece603ea59d7 {"id": "6ff36aa8-c68d-42c9-b68b-ece603ea59d7", "type": "patron", "active": true, "barcode": "904469293249338", "metadata": {"createdDate": "2021-03-09T10:23:04.584", "updatedDate": "2021-03-09T10:23:04.584+00:00"}, "personal": {"email": "zola@wisozk-oreilly-and-veum.ls", "phone": "697.664.2459 x1220", "lastName": "Kuhic", "addresses": [{"city": "Fountain Valley", "region": "AS", "countryId": "US", "postalCode": "02030", "addressLine1": "06864 Huels Skyway", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Ellis", "middleName": "Darwin", "dateOfBirth": "1968-12-04T00:00:00.000+00:00", "mobilePhone": "(571)322-6274", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "amir", "createdDate": "2021-03-09T10:23:04.629+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:23:04.629+00:00", "enrollmentDate": "2018-07-24T00:00:00.000+00:00", "expirationDate": "2020-01-05T00:00:00.000+00:00"} 2021-03-09 10:23:04.584 \N 3684a786-6671-4268-8ed0-9db82ebca60b c78aa9ec-b7d3-4d53-9e43-20296f39b496 {"id": "c78aa9ec-b7d3-4d53-9e43-20296f39b496", "type": "patron", "active": false, "barcode": "874335864399373", "metadata": {"createdDate": "2021-03-09T10:23:04.721", "updatedDate": "2021-03-09T10:23:04.721+00:00"}, "personal": {"email": "eula@walter-wyman-and-wintheiser.ly", "phone": "(874)390-9335 x53499", "lastName": "Stoltenberg", "addresses": [{"city": "Cypress", "region": "PR", "countryId": "US", "postalCode": "49387-9443", "addressLine1": "88500 Kozey Terrace Apt. 252", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Jeanne", "dateOfBirth": "1965-06-04T00:00:00.000+00:00", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "clara", "createdDate": "2021-03-09T10:23:04.768+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:23:04.768+00:00", "enrollmentDate": "2019-02-16T00:00:00.000+00:00", "expirationDate": "2020-09-09T00:00:00.000+00:00"} 2021-03-09 10:23:04.721 \N 503a81cd-6c26-400f-b620-14c08943697c a2468e40-fb7c-453c-a217-8388801e2407 {"id": "a2468e40-fb7c-453c-a217-8388801e2407", "type": "patron", "active": false, "barcode": "599322056324332", "metadata": {"createdDate": "2021-03-09T10:23:04.847", "updatedDate": "2021-03-09T10:23:04.847+00:00"}, "personal": {"email": "christiana@hahn-collins-and-bruen.pf", "phone": "1-591-386-1824 x61080", "lastName": "Schowalter", "addresses": [{"city": "San Fernando", "region": "DE", "countryId": "US", "postalCode": "82798-0326", "addressLine1": "65046 Floor 50", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Caterina", "dateOfBirth": "1954-08-07T00:00:00.000+00:00", "mobilePhone": "248-408-7381", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "fanny", "createdDate": "2021-03-09T10:23:04.891+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:23:04.891+00:00", "enrollmentDate": "2016-12-20T00:00:00.000+00:00", "expirationDate": "2020-02-15T00:00:00.000+00:00"} 2021-03-09 10:23:04.847 \N 3684a786-6671-4268-8ed0-9db82ebca60b bf93cf45-4c02-4a34-aad0-9ed949109630 {"id": "bf93cf45-4c02-4a34-aad0-9ed949109630", "type": "patron", "active": true, "barcode": "916928316187196", "metadata": {"createdDate": "2021-03-09T10:23:04.972", "updatedDate": "2021-03-09T10:23:04.972+00:00"}, "personal": {"email": "shaylee@hayes-and-sons.aero", "phone": "016.042.5121", "lastName": "West", "addresses": [{"city": "Alameda", "region": "IA", "countryId": "US", "postalCode": "70909-1665", "addressLine1": "48545 Kessler Harbors", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Buck", "dateOfBirth": "1997-06-19T00:00:00.000+00:00", "mobilePhone": "752-136-3560 x448", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "ambrose", "createdDate": "2021-03-09T10:23:05.017+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:23:05.017+00:00", "enrollmentDate": "2017-06-14T00:00:00.000+00:00", "expirationDate": "2019-03-30T00:00:00.000+00:00"} 2021-03-09 10:23:04.972 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 0d6d38bf-aaf6-4976-a2ce-7ff787195982 {"id": "0d6d38bf-aaf6-4976-a2ce-7ff787195982", "type": "patron", "active": true, "barcode": "121881123661538", "metadata": {"createdDate": "2021-03-09T10:23:05.101", "updatedDate": "2021-03-09T10:23:05.101+00:00"}, "personal": {"email": "keaton@beahan-mclaughlin.jp", "phone": "(039)225-2948", "lastName": "Hettinger", "addresses": [{"city": "Moreno Valley", "region": "CT", "countryId": "US", "postalCode": "39331-8766", "addressLine1": "84028 Floor 77", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Janet", "middleName": "Samantha", "dateOfBirth": "1989-05-26T00:00:00.000+00:00", "mobilePhone": "(601)986-2680", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "hans", "createdDate": "2021-03-09T10:23:05.147+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:23:05.147+00:00", "enrollmentDate": "2017-07-06T00:00:00.000+00:00", "expirationDate": "2019-05-13T00:00:00.000+00:00"} 2021-03-09 10:23:05.101 \N 3684a786-6671-4268-8ed0-9db82ebca60b e1e435da-97e2-4083-8657-832aeb549929 {"id": "e1e435da-97e2-4083-8657-832aeb549929", "type": "patron", "active": true, "barcode": "44219243602281", "metadata": {"createdDate": "2021-03-09T10:23:05.237", "updatedDate": "2021-03-09T10:23:05.237+00:00"}, "personal": {"email": "lafayette@koss-cremin-and-romaguera.st", "phone": "913.966.6319 x332", "lastName": "Koss", "addresses": [{"city": "San Fernando", "region": "IN", "countryId": "US", "postalCode": "47530", "addressLine1": "52485 Thiel Circle", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Aglae", "middleName": "Abbey", "dateOfBirth": "1981-12-13T00:00:00.000+00:00", "mobilePhone": "(785)272-0417 x5465", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "ophelia", "createdDate": "2021-03-09T10:23:05.286+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:23:05.286+00:00", "enrollmentDate": "2016-05-05T00:00:00.000+00:00", "expirationDate": "2021-01-20T00:00:00.000+00:00"} 2021-03-09 10:23:05.237 \N ad0bc554-d5bc-463c-85d1-5562127ae91b 046353cf-3963-482c-9792-32ade0a33afa {"id": "046353cf-3963-482c-9792-32ade0a33afa", "type": "patron", "active": true, "barcode": "708746312982146", "metadata": {"createdDate": "2021-03-09T10:23:05.364", "updatedDate": "2021-03-09T10:23:05.364+00:00"}, "personal": {"email": "norris@wilderman-brown-and-bayer.aq", "phone": "1-866-895-2189 x448", "lastName": "Schmidt", "addresses": [{"city": "Hayward", "region": "MA", "countryId": "US", "postalCode": "46183-0875", "addressLine1": "01944 Kavon Coves", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Lionel", "middleName": "Bernhard", "dateOfBirth": "2003-11-05T00:00:00.000+00:00", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "jorge", "createdDate": "2021-03-09T10:23:05.411+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:23:05.411+00:00", "enrollmentDate": "2017-09-15T00:00:00.000+00:00", "expirationDate": "2020-10-13T00:00:00.000+00:00"} 2021-03-09 10:23:05.364 \N 503a81cd-6c26-400f-b620-14c08943697c aace299f-7a74-4118-9cf3-599110dce278 {"id": "aace299f-7a74-4118-9cf3-599110dce278", "type": "patron", "active": true, "barcode": "585052723770974", "metadata": {"createdDate": "2021-03-09T10:23:05.491", "updatedDate": "2021-03-09T10:23:05.491+00:00"}, "personal": {"email": "laura@jewess-hayes-and-schuppe.ba", "phone": "(832)988-4869 x807", "lastName": "Willms", "addresses": [{"city": "Bessemer", "region": "NV", "countryId": "US", "postalCode": "16323-4796", "addressLine1": "62103 Austin Flat Suite 400", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Cora", "dateOfBirth": "1947-09-24T00:00:00.000+00:00", "mobilePhone": "084.739.9139 x7112", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "cecelia", "createdDate": "2021-03-09T10:23:05.540+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:23:05.540+00:00", "enrollmentDate": "2018-02-21T00:00:00.000+00:00", "expirationDate": "2020-06-17T00:00:00.000+00:00"} 2021-03-09 10:23:05.491 \N ad0bc554-d5bc-463c-85d1-5562127ae91b 223907c9-517b-4b10-a6bc-8f7fcb0a05c3 {"id": "223907c9-517b-4b10-a6bc-8f7fcb0a05c3", "type": "patron", "active": true, "barcode": "528756905592459", "metadata": {"createdDate": "2021-03-09T10:23:05.629", "updatedDate": "2021-03-09T10:23:05.629+00:00"}, "personal": {"email": "candido@white-bartell-and-glover.ir", "phone": "307-470-4467", "lastName": "Simonis", "addresses": [{"city": "Alameda", "region": "MS", "countryId": "US", "postalCode": "86992-2850", "addressLine1": "95830 Mayer Haven", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Lilly", "middleName": "Marisa", "dateOfBirth": "1971-01-07T00:00:00.000+00:00", "mobilePhone": "514-538-6868", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "barbara", "createdDate": "2021-03-09T10:23:05.676+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:23:05.676+00:00", "enrollmentDate": "2015-05-06T00:00:00.000+00:00", "expirationDate": "2020-11-06T00:00:00.000+00:00"} 2021-03-09 10:23:05.629 \N ad0bc554-d5bc-463c-85d1-5562127ae91b 011dc219-6b7f-4d93-ae7f-f512ed651493 {"id": "011dc219-6b7f-4d93-ae7f-f512ed651493", "type": "patron", "active": true, "barcode": "897083256223023", "metadata": {"createdDate": "2021-03-09T10:23:05.763", "updatedDate": "2021-03-09T10:23:05.763+00:00"}, "personal": {"email": "monserrat@donnelly-skiles.ge", "phone": "(619)645-7533 x5934", "lastName": "Huels", "addresses": [{"city": "Marana", "region": "NH", "countryId": "US", "postalCode": "02013-0332", "addressLine1": "69175 Haley Skyway", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Lois", "dateOfBirth": "1947-06-23T00:00:00.000+00:00", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "elmer", "createdDate": "2021-03-09T10:23:05.809+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:23:05.809+00:00", "enrollmentDate": "2018-05-06T00:00:00.000+00:00", "expirationDate": "2019-09-02T00:00:00.000+00:00"} 2021-03-09 10:23:05.763 \N 3684a786-6671-4268-8ed0-9db82ebca60b dc5dab8d-f80a-476a-b920-3cf21eeee902 {"id": "dc5dab8d-f80a-476a-b920-3cf21eeee902", "type": "patron", "active": true, "barcode": "518831601344295", "metadata": {"createdDate": "2021-03-09T10:23:05.889", "updatedDate": "2021-03-09T10:23:05.889+00:00"}, "personal": {"email": "mitchel@leuschke-klocko.dz", "phone": "500.188.3735", "lastName": "Schuster", "addresses": [{"city": "La Habra", "region": "NY", "countryId": "US", "postalCode": "26234-8501", "addressLine1": "95600 Basement", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Luz", "dateOfBirth": "1964-06-16T00:00:00.000+00:00", "mobilePhone": "031.904.0434", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "theresia", "createdDate": "2021-03-09T10:23:05.937+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:23:05.937+00:00", "enrollmentDate": "2015-03-15T00:00:00.000+00:00", "expirationDate": "2020-07-15T00:00:00.000+00:00"} 2021-03-09 10:23:05.889 \N 503a81cd-6c26-400f-b620-14c08943697c 6b5a896c-c6f4-4a28-a89a-2e2ca6ff0d0e {"id": "6b5a896c-c6f4-4a28-a89a-2e2ca6ff0d0e", "type": "patron", "active": true, "barcode": "463985584611510", "metadata": {"createdDate": "2021-03-09T10:23:06.02", "updatedDate": "2021-03-09T10:23:06.020+00:00"}, "personal": {"email": "stone@buckridge-inc.ru", "phone": "(284)419-7957 x666", "lastName": "Runolfsson", "addresses": [{"city": "Laguna Woods", "region": "IN", "countryId": "US", "postalCode": "43554", "addressLine1": "46087 Evan Circle Suite 583", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Modesta", "dateOfBirth": "1963-08-16T00:00:00.000+00:00", "mobilePhone": "227-143-9012 x232", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "jimmie", "createdDate": "2021-03-09T10:23:06.067+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:23:06.067+00:00", "enrollmentDate": "2015-10-16T00:00:00.000+00:00", "expirationDate": "2020-04-27T00:00:00.000+00:00"} 2021-03-09 10:23:06.02 \N 3684a786-6671-4268-8ed0-9db82ebca60b 48861bba-0d73-4277-8f44-f3b65b038017 {"id": "48861bba-0d73-4277-8f44-f3b65b038017", "type": "patron", "active": false, "barcode": "906257742605415", "metadata": {"createdDate": "2021-03-09T10:23:06.148", "updatedDate": "2021-03-09T10:23:06.148+00:00"}, "personal": {"email": "andres@hyatt-turner-and-white.nz", "phone": "408-348-2751", "lastName": "Satterfield", "addresses": [{"city": "Bell", "region": "MN", "countryId": "US", "postalCode": "58547-5667", "addressLine1": "77331 Krajcik Field", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Elvie", "dateOfBirth": "1981-01-13T00:00:00.000+00:00", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "eugene", "createdDate": "2021-03-09T10:23:06.198+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:23:06.198+00:00", "enrollmentDate": "2015-11-14T00:00:00.000+00:00", "expirationDate": "2019-07-31T00:00:00.000+00:00"} 2021-03-09 10:23:06.148 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e bb4d8818-35cc-4cb6-b181-b5ccfb734744 {"id": "bb4d8818-35cc-4cb6-b181-b5ccfb734744", "type": "patron", "active": false, "barcode": "744632821019678", "metadata": {"createdDate": "2021-03-09T10:23:06.275", "updatedDate": "2021-03-09T10:23:06.275+00:00"}, "personal": {"email": "sid@mohr-schowalter.ec", "phone": "(717)282-0004 x5449", "lastName": "Zieme", "addresses": [{"city": "Forrest City", "region": "IA", "countryId": "US", "postalCode": "35163-7456", "addressLine1": "00628 Lueilwitz Plains Apt. 185", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Donna", "middleName": "Santa", "dateOfBirth": "1959-03-28T00:00:00.000+00:00", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "jessy", "createdDate": "2021-03-09T10:23:06.319+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:23:06.319+00:00", "enrollmentDate": "2017-05-17T00:00:00.000+00:00", "expirationDate": "2019-08-25T00:00:00.000+00:00"} 2021-03-09 10:23:06.275 \N 503a81cd-6c26-400f-b620-14c08943697c a23eac4b-955e-451c-b4ff-6ec2f5e63e23 {"id": "a23eac4b-955e-451c-b4ff-6ec2f5e63e23", "type": "patron", "active": true, "barcode": "737503980446128", "metadata": {"createdDate": "2021-03-09T10:23:06.402", "updatedDate": "2021-03-09T10:23:06.402+00:00"}, "personal": {"email": "esther@cummerata-mclaughlin-and-grant.cd", "phone": "242.169.1046 x52431", "lastName": "Bayer", "addresses": [{"city": "Mesa", "region": "WI", "countryId": "US", "postalCode": "01091-7652", "addressLine1": "30718 Ankunding Row", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Zora", "middleName": "Shea", "dateOfBirth": "1966-06-22T00:00:00.000+00:00", "mobilePhone": "265-043-4033 x73485", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "austin", "createdDate": "2021-03-09T10:23:06.457+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:23:06.457+00:00", "enrollmentDate": "2017-10-12T00:00:00.000+00:00", "expirationDate": "2019-10-02T00:00:00.000+00:00"} 2021-03-09 10:23:06.402 \N ad0bc554-d5bc-463c-85d1-5562127ae91b ac521a2a-d933-42f9-b3a4-2d7399880057 {"id": "ac521a2a-d933-42f9-b3a4-2d7399880057", "type": "patron", "active": true, "barcode": "333522075817029", "metadata": {"createdDate": "2021-03-09T10:23:06.536", "updatedDate": "2021-03-09T10:23:06.536+00:00"}, "personal": {"email": "wanda@murphy-reichel-and-nitzsche.cn", "phone": "519-829-2693", "lastName": "Toy", "addresses": [{"city": "Lancaster", "region": "MP", "countryId": "US", "postalCode": "79769", "addressLine1": "24658 Koepp Passage Suite 308", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Jennie", "middleName": "Meda", "dateOfBirth": "1989-02-09T00:00:00.000+00:00", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "giovani", "createdDate": "2021-03-09T10:23:06.585+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:23:06.585+00:00", "enrollmentDate": "2015-07-02T00:00:00.000+00:00", "expirationDate": "2020-04-22T00:00:00.000+00:00"} 2021-03-09 10:23:06.536 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 69a7d4f8-a32a-46d8-a006-0e5ea69f34bc {"id": "69a7d4f8-a32a-46d8-a006-0e5ea69f34bc", "type": "patron", "active": false, "barcode": "535145956127635", "metadata": {"createdDate": "2021-03-09T10:23:06.669", "updatedDate": "2021-03-09T10:23:06.669+00:00"}, "personal": {"email": "ludie@will-bode-and-yundt.wf", "phone": "1-871-876-7675", "lastName": "Russel", "addresses": [{"city": "Artesia", "region": "VI", "countryId": "US", "postalCode": "56270-4594", "addressLine1": "06616 Verda Brook #606", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Madeline", "dateOfBirth": "2000-12-21T00:00:00.000+00:00", "mobilePhone": "1-311-014-7555 x947", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "alyson", "createdDate": "2021-03-09T10:23:06.722+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:23:06.722+00:00", "enrollmentDate": "2017-11-18T00:00:00.000+00:00", "expirationDate": "2020-08-04T00:00:00.000+00:00"} 2021-03-09 10:23:06.669 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 1dbf36ab-bba6-4725-8456-bda646796dd1 {"id": "1dbf36ab-bba6-4725-8456-bda646796dd1", "type": "patron", "active": true, "barcode": "81579696113021", "metadata": {"createdDate": "2021-03-09T10:23:06.807", "updatedDate": "2021-03-09T10:23:06.807+00:00"}, "personal": {"email": "minerva@lebsack-group.mw", "phone": "1-339-245-0353 x4993", "lastName": "Hirthe", "addresses": [{"city": "Elkhart", "region": "TX", "countryId": "US", "postalCode": "31438-6744", "addressLine1": "06865 Wisozk Overpass", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Jaleel", "dateOfBirth": "2008-02-20T00:00:00.000+00:00", "mobilePhone": "1-267-394-1592 x833", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "vivienne", "createdDate": "2021-03-09T10:23:06.851+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:23:06.851+00:00", "enrollmentDate": "2018-12-04T00:00:00.000+00:00", "expirationDate": "2020-03-07T00:00:00.000+00:00"} 2021-03-09 10:23:06.807 \N 503a81cd-6c26-400f-b620-14c08943697c 6302b991-3223-4bc7-ae66-795d161f64ab {"id": "6302b991-3223-4bc7-ae66-795d161f64ab", "type": "patron", "active": true, "barcode": "855537998260640", "metadata": {"createdDate": "2021-03-09T10:23:06.923", "updatedDate": "2021-03-09T10:23:06.923+00:00"}, "personal": {"email": "ralph@olson-group.aq", "phone": "978-586-0651", "lastName": "Treutel", "addresses": [{"city": "Lake Forest", "region": "CA", "countryId": "US", "postalCode": "58608", "addressLine1": "84403 Blake Port", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Arthur", "dateOfBirth": "1968-03-13T00:00:00.000+00:00", "mobilePhone": "700-321-8490 x68676", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "corrine", "createdDate": "2021-03-09T10:23:06.974+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:23:06.974+00:00", "enrollmentDate": "2017-04-05T00:00:00.000+00:00", "expirationDate": "2019-09-20T00:00:00.000+00:00"} 2021-03-09 10:23:06.923 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e c7d6c761-905e-4e7b-a616-a624175efe11 {"id": "c7d6c761-905e-4e7b-a616-a624175efe11", "type": "patron", "active": true, "barcode": "28749549181060", "metadata": {"createdDate": "2021-03-09T10:23:07.055", "updatedDate": "2021-03-09T10:23:07.055+00:00"}, "personal": {"email": "bradford@ebert-nikolaus-and-hauck.sb", "phone": "1-107-113-0140", "lastName": "Koss", "addresses": [{"city": "Springfield", "region": "WI", "countryId": "US", "postalCode": "68890", "addressLine1": "80404 Domenico Crescent", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Hassie", "middleName": "Esmeralda", "dateOfBirth": "1960-08-24T00:00:00.000+00:00", "mobilePhone": "807-715-7006 x3633", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "reva", "createdDate": "2021-03-09T10:23:07.100+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:23:07.100+00:00", "enrollmentDate": "2018-03-03T00:00:00.000+00:00", "expirationDate": "2019-04-03T00:00:00.000+00:00"} 2021-03-09 10:23:07.055 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 2a81b279-d459-4022-82f6-69a569d196b9 {"id": "2a81b279-d459-4022-82f6-69a569d196b9", "type": "patron", "active": true, "barcode": "631888472578232", "metadata": {"createdDate": "2021-03-09T10:23:07.175", "updatedDate": "2021-03-09T10:23:07.175+00:00"}, "personal": {"email": "nash@hansen-koepp-and-prohaska.gt", "phone": "(675)279-7737 x58358", "lastName": "Bernhard", "addresses": [{"city": "Demopolis", "region": "AR", "countryId": "US", "postalCode": "27791", "addressLine1": "64292 Salvatore Trafficway #413", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Cordell", "middleName": "Mafalda", "dateOfBirth": "2008-02-20T00:00:00.000+00:00", "mobilePhone": "1-658-739-5448 x619", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "sunny", "createdDate": "2021-03-09T10:23:07.229+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:23:07.229+00:00", "enrollmentDate": "2017-12-01T00:00:00.000+00:00", "expirationDate": "2020-12-20T00:00:00.000+00:00"} 2021-03-09 10:23:07.175 \N 503a81cd-6c26-400f-b620-14c08943697c be3113c3-0965-4bf4-97c2-40ff54501c2b {"id": "be3113c3-0965-4bf4-97c2-40ff54501c2b", "type": "patron", "active": true, "barcode": "80649207380965", "metadata": {"createdDate": "2021-03-09T10:23:07.301", "updatedDate": "2021-03-09T10:23:07.301+00:00"}, "personal": {"email": "efrain@tromp-feest-and-runolfsdottir.gf", "phone": "152-043-1465 x5892", "lastName": "Walker", "addresses": [{"city": "Two Rivers", "region": "MN", "countryId": "US", "postalCode": "88605-1788", "addressLine1": "77253 Julien Roads", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Chelsie", "middleName": "Carmela", "dateOfBirth": "2005-01-14T00:00:00.000+00:00", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "alexandria", "createdDate": "2021-03-09T10:23:07.351+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:23:07.351+00:00", "enrollmentDate": "2018-10-28T00:00:00.000+00:00", "expirationDate": "2020-09-13T00:00:00.000+00:00"} 2021-03-09 10:23:07.301 \N 503a81cd-6c26-400f-b620-14c08943697c c573e5f8-a570-475d-a75e-88a4d2b757d2 {"id": "c573e5f8-a570-475d-a75e-88a4d2b757d2", "type": "patron", "active": true, "barcode": "255735337127152", "metadata": {"createdDate": "2021-03-09T10:23:07.439", "updatedDate": "2021-03-09T10:23:07.439+00:00"}, "personal": {"email": "cullen@cassin-llc.bh", "phone": "261.843.4484 x190", "lastName": "Barrows", "addresses": [{"city": "Laguna Woods", "region": "FL", "countryId": "US", "postalCode": "50788-7838", "addressLine1": "96095 Nicolas Row", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Harry", "dateOfBirth": "1963-10-08T00:00:00.000+00:00", "mobilePhone": "959-422-9547 x581", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "raphaelle", "createdDate": "2021-03-09T10:23:07.489+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:23:07.489+00:00", "enrollmentDate": "2015-10-30T00:00:00.000+00:00", "expirationDate": "2019-04-11T00:00:00.000+00:00"} 2021-03-09 10:23:07.439 \N 3684a786-6671-4268-8ed0-9db82ebca60b 872695bb-4157-4c6f-84c7-eb5b50b9ce17 {"id": "872695bb-4157-4c6f-84c7-eb5b50b9ce17", "type": "patron", "active": true, "barcode": "439088239777998", "metadata": {"createdDate": "2021-03-09T10:23:07.581", "updatedDate": "2021-03-09T10:23:07.581+00:00"}, "personal": {"email": "amara@emmerich-stroman-and-cummings.et", "phone": "648-421-1448 x339", "lastName": "Hirthe", "addresses": [{"city": "Escondido", "region": "NM", "countryId": "US", "postalCode": "23610-3538", "addressLine1": "18123 Room A", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Freda", "middleName": "Abigale", "dateOfBirth": "1971-01-09T00:00:00.000+00:00", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "okey", "createdDate": "2021-03-09T10:23:07.641+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:23:07.641+00:00", "enrollmentDate": "2018-11-07T00:00:00.000+00:00", "expirationDate": "2019-08-14T00:00:00.000+00:00"} 2021-03-09 10:23:07.581 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 0aa0c321-9974-4a67-92dc-bca029d093e2 {"id": "0aa0c321-9974-4a67-92dc-bca029d093e2", "type": "patron", "active": false, "barcode": "681175740267637", "metadata": {"createdDate": "2021-03-09T10:23:07.724", "updatedDate": "2021-03-09T10:23:07.724+00:00"}, "personal": {"email": "arlie@schultz-franecki-and-kohler.org", "phone": "201-462-5010 x7332", "lastName": "Koss", "addresses": [{"city": "Tok", "region": "VT", "countryId": "US", "postalCode": "26347-1664", "addressLine1": "45639 Graham Club", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Franco", "middleName": "Guadalupe", "dateOfBirth": "2011-01-17T00:00:00.000+00:00", "mobilePhone": "969.479.2172", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "natalia", "createdDate": "2021-03-09T10:23:07.782+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:23:07.782+00:00", "enrollmentDate": "2017-06-09T00:00:00.000+00:00", "expirationDate": "2019-11-17T00:00:00.000+00:00"} 2021-03-09 10:23:07.724 \N 3684a786-6671-4268-8ed0-9db82ebca60b bc048122-1914-4971-ab0f-62303fef71aa {"id": "bc048122-1914-4971-ab0f-62303fef71aa", "type": "patron", "active": true, "barcode": "962507858300576", "metadata": {"createdDate": "2021-03-09T10:23:07.86", "updatedDate": "2021-03-09T10:23:07.860+00:00"}, "personal": {"email": "lillian@kreiger-halvorson-and-reynolds.eg", "phone": "(234)085-0331 x789", "lastName": "Koss", "addresses": [{"city": "Kokomo", "region": "NE", "countryId": "US", "postalCode": "86233-6003", "addressLine1": "84059 Anthony Pine", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Jolie", "dateOfBirth": "1947-03-21T00:00:00.000+00:00", "mobilePhone": "322-338-8530 x1379", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "clifton", "createdDate": "2021-03-09T10:23:07.908+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:23:07.908+00:00", "enrollmentDate": "2017-07-28T00:00:00.000+00:00", "expirationDate": "2020-10-28T00:00:00.000+00:00"} 2021-03-09 10:23:07.86 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 3793853e-6297-424d-abea-24525079f658 {"id": "3793853e-6297-424d-abea-24525079f658", "type": "patron", "active": true, "barcode": "752157134026468", "metadata": {"createdDate": "2021-03-09T10:23:07.995", "updatedDate": "2021-03-09T10:23:07.995+00:00"}, "personal": {"email": "yvonne@cormier-mertz.tz", "phone": "1-525-040-6557", "lastName": "Kulas", "addresses": [{"city": "Kokomo", "region": "AS", "countryId": "US", "postalCode": "60624-1416", "addressLine1": "37345 Brakus Junctions", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Earline", "middleName": "Angel", "dateOfBirth": "1960-05-03T00:00:00.000+00:00", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "bernhard", "createdDate": "2021-03-09T10:23:08.046+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:23:08.046+00:00", "enrollmentDate": "2015-05-07T00:00:00.000+00:00", "expirationDate": "2019-12-10T00:00:00.000+00:00"} 2021-03-09 10:23:07.995 \N 503a81cd-6c26-400f-b620-14c08943697c 93136048-585b-466e-88f8-a10115e6d7e2 {"id": "93136048-585b-466e-88f8-a10115e6d7e2", "type": "patron", "active": true, "barcode": "726027361780136", "metadata": {"createdDate": "2021-03-09T10:23:08.124", "updatedDate": "2021-03-09T10:23:08.124+00:00"}, "personal": {"email": "laura@torp-hilll-and-rippin.gs", "phone": "170-706-1753 x73724", "lastName": "Glover", "addresses": [{"city": "La Habra", "region": "AL", "countryId": "US", "postalCode": "20369-5662", "addressLine1": "58778 Schumm Wells", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Heath", "middleName": "Lizeth", "dateOfBirth": "1998-04-26T00:00:00.000+00:00", "mobilePhone": "1-932-404-5189 x065", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "janie", "createdDate": "2021-03-09T10:23:08.171+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:23:08.171+00:00", "enrollmentDate": "2017-08-08T00:00:00.000+00:00", "expirationDate": "2019-06-22T00:00:00.000+00:00"} 2021-03-09 10:23:08.124 \N ad0bc554-d5bc-463c-85d1-5562127ae91b 7d7f46e8-5f99-4ac8-aa86-83a23f4bd8de {"id": "7d7f46e8-5f99-4ac8-aa86-83a23f4bd8de", "type": "patron", "active": false, "barcode": "870729091333835", "metadata": {"createdDate": "2021-03-09T10:23:08.254", "updatedDate": "2021-03-09T10:23:08.254+00:00"}, "personal": {"email": "eula@nicolas-and-sons.hu", "phone": "(320)304-2693", "lastName": "Emard", "addresses": [{"city": "Culver City", "region": "MP", "countryId": "US", "postalCode": "67798", "addressLine1": "23228 Cremin Plains Suite 917", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Iliana", "middleName": "Jackie", "dateOfBirth": "1964-08-30T00:00:00.000+00:00", "mobilePhone": "(414)238-0544 x546", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "eli", "createdDate": "2021-03-09T10:23:08.302+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:23:08.302+00:00", "enrollmentDate": "2016-04-27T00:00:00.000+00:00", "expirationDate": "2019-05-22T00:00:00.000+00:00"} 2021-03-09 10:23:08.254 \N 3684a786-6671-4268-8ed0-9db82ebca60b 15b9deaf-1a59-4396-a8e5-d6c7e5b79b28 {"id": "15b9deaf-1a59-4396-a8e5-d6c7e5b79b28", "type": "patron", "active": true, "barcode": "190102646879172", "metadata": {"createdDate": "2021-03-09T10:23:08.379", "updatedDate": "2021-03-09T10:23:08.379+00:00"}, "personal": {"email": "sammie@willms-inc.bz", "phone": "380.490.6284 x3204", "lastName": "Fay", "addresses": [{"city": "Toledo", "region": "TN", "countryId": "US", "postalCode": "04181", "addressLine1": "03092 Slip 663", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Demond", "middleName": "Elias", "dateOfBirth": "2009-05-23T00:00:00.000+00:00", "mobilePhone": "1-654-336-4763 x993", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "nova", "createdDate": "2021-03-09T10:23:08.424+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:23:08.424+00:00", "enrollmentDate": "2017-06-30T00:00:00.000+00:00", "expirationDate": "2019-10-29T00:00:00.000+00:00"} 2021-03-09 10:23:08.379 \N 503a81cd-6c26-400f-b620-14c08943697c 6c76eeec-183d-4635-9019-11ce8623d50c {"id": "6c76eeec-183d-4635-9019-11ce8623d50c", "type": "patron", "active": true, "barcode": "35138758585411", "metadata": {"createdDate": "2021-03-09T10:23:08.5", "updatedDate": "2021-03-09T10:23:08.500+00:00"}, "personal": {"email": "eldred@morissette-and-sons.sn", "phone": "(723)646-2360", "lastName": "Koss", "addresses": [{"city": "Huntsville", "region": "NH", "countryId": "US", "postalCode": "06723", "addressLine1": "83631 Wilma Unions #135", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Lincoln", "middleName": "Izabella", "dateOfBirth": "1982-12-23T00:00:00.000+00:00", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "jessie", "createdDate": "2021-03-09T10:23:08.547+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:23:08.547+00:00", "enrollmentDate": "2017-03-23T00:00:00.000+00:00", "expirationDate": "2020-08-14T00:00:00.000+00:00"} 2021-03-09 10:23:08.5 \N 3684a786-6671-4268-8ed0-9db82ebca60b 860b2291-c28a-4943-804a-169af01edef4 {"id": "860b2291-c28a-4943-804a-169af01edef4", "type": "patron", "active": true, "barcode": "646523505901846", "metadata": {"createdDate": "2021-03-09T10:23:08.626", "updatedDate": "2021-03-09T10:23:08.626+00:00"}, "personal": {"email": "concepcion@jacobi-koepp.ri.us", "phone": "519.837.1673", "lastName": "Lueilwitz", "addresses": [{"city": "Demopolis", "region": "NC", "countryId": "US", "postalCode": "05692-9310", "addressLine1": "97733 Macey Plaza Suite 564", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Zetta", "middleName": "Brian", "dateOfBirth": "1997-01-01T00:00:00.000+00:00", "mobilePhone": "393.107.6320 x2955", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "colten", "createdDate": "2021-03-09T10:23:08.674+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:23:08.674+00:00", "enrollmentDate": "2017-08-11T00:00:00.000+00:00", "expirationDate": "2019-10-26T00:00:00.000+00:00"} 2021-03-09 10:23:08.626 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e eaed771f-1472-4f5a-a31f-bbb5922ba5fe {"id": "eaed771f-1472-4f5a-a31f-bbb5922ba5fe", "type": "patron", "active": false, "barcode": "771789476011363", "metadata": {"createdDate": "2021-03-09T10:23:08.753", "updatedDate": "2021-03-09T10:23:08.753+00:00"}, "personal": {"email": "dovie@fisher-llc.tf", "phone": "1-980-920-3425 x26720", "lastName": "Wiza", "addresses": [{"city": "Eufaula", "region": "IL", "countryId": "US", "postalCode": "39763", "addressLine1": "20300 Hackett Forks", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Augustine", "middleName": "Jacynthe", "dateOfBirth": "1991-09-27T00:00:00.000+00:00", "mobilePhone": "283-529-4332 x09754", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "vidal", "createdDate": "2021-03-09T10:23:08.799+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:23:08.799+00:00", "enrollmentDate": "2016-02-01T00:00:00.000+00:00", "expirationDate": "2019-04-21T00:00:00.000+00:00"} 2021-03-09 10:23:08.753 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e 4205e8ff-804d-45bb-9d6d-f75f845ce608 {"id": "4205e8ff-804d-45bb-9d6d-f75f845ce608", "type": "patron", "active": true, "barcode": "196625924015005", "metadata": {"createdDate": "2021-03-09T10:23:08.882", "updatedDate": "2021-03-09T10:23:08.882+00:00"}, "personal": {"email": "estell@friesen-llc.au", "phone": "350-369-4844 x907", "lastName": "Mohr", "addresses": [{"city": "Compton", "region": "FL", "countryId": "US", "postalCode": "95966-2819", "addressLine1": "73436 Phoebe Burgs Suite 980", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Bridget", "dateOfBirth": "1976-07-01T00:00:00.000+00:00", "mobilePhone": "1-791-331-4472", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "carolina", "createdDate": "2021-03-09T10:23:08.929+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:23:08.929+00:00", "enrollmentDate": "2016-09-05T00:00:00.000+00:00", "expirationDate": "2021-01-06T00:00:00.000+00:00"} 2021-03-09 10:23:08.882 \N 3684a786-6671-4268-8ed0-9db82ebca60b 6f644096-0cb6-4d9c-9da4-0831b3625c0d {"id": "6f644096-0cb6-4d9c-9da4-0831b3625c0d", "type": "patron", "active": false, "barcode": "456173865331194", "metadata": {"createdDate": "2021-03-09T10:23:09.018", "updatedDate": "2021-03-09T10:23:09.018+00:00"}, "personal": {"email": "yesenia@schimmel-inc.id", "phone": "(679)277-6615 x14809", "lastName": "Hyatt", "addresses": [{"city": "Inglewood", "region": "AP", "countryId": "US", "postalCode": "92493", "addressLine1": "14106 Nils Extension Suite 279", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Casimir", "middleName": "Arthur", "dateOfBirth": "1995-09-18T00:00:00.000+00:00", "mobilePhone": "1-142-783-1473", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "seth", "createdDate": "2021-03-09T10:23:09.069+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:23:09.069+00:00", "enrollmentDate": "2016-02-10T00:00:00.000+00:00", "expirationDate": "2019-04-13T00:00:00.000+00:00"} 2021-03-09 10:23:09.018 \N ad0bc554-d5bc-463c-85d1-5562127ae91b 07066a1f-1fb7-4793-bbca-7cd8d1ea90ab {"id": "07066a1f-1fb7-4793-bbca-7cd8d1ea90ab", "type": "patron", "active": true, "barcode": "950908851771803", "metadata": {"createdDate": "2021-03-09T10:23:09.153", "updatedDate": "2021-03-09T10:23:09.153+00:00"}, "personal": {"email": "roger@gottlieb-smith.am", "phone": "(369)441-1512 x334", "lastName": "McClure", "addresses": [{"city": "Monrovia", "region": "HI", "countryId": "US", "postalCode": "20851", "addressLine1": "96132 Gutkowski Extensions", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Madisyn", "middleName": "Elise", "dateOfBirth": "1998-08-02T00:00:00.000+00:00", "mobilePhone": "(807)609-7008 x01814", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "vergie", "createdDate": "2021-03-09T10:23:09.202+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:23:09.202+00:00", "enrollmentDate": "2018-03-12T00:00:00.000+00:00", "expirationDate": "2019-09-01T00:00:00.000+00:00"} 2021-03-09 10:23:09.153 \N 503a81cd-6c26-400f-b620-14c08943697c cd5994cf-6ee5-49b4-b58e-7bc70d724626 {"id": "cd5994cf-6ee5-49b4-b58e-7bc70d724626", "type": "patron", "active": false, "barcode": "386142078590559", "metadata": {"createdDate": "2021-03-09T10:23:09.284", "updatedDate": "2021-03-09T10:23:09.284+00:00"}, "personal": {"email": "america@jast-hamill.ao", "phone": "024.243.8205", "lastName": "Tillman", "addresses": [{"city": "Cleveland", "region": "WA", "countryId": "US", "postalCode": "30597-9040", "addressLine1": "78353 Brandt Spring Suite 500", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Cordie", "dateOfBirth": "1961-07-09T00:00:00.000+00:00", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "pierre", "createdDate": "2021-03-09T10:23:09.327+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:23:09.327+00:00", "enrollmentDate": "2015-04-25T00:00:00.000+00:00", "expirationDate": "2020-04-11T00:00:00.000+00:00"} 2021-03-09 10:23:09.284 \N 3684a786-6671-4268-8ed0-9db82ebca60b 420d485a-033f-4999-ab2c-12c00cd5ec07 {"id": "420d485a-033f-4999-ab2c-12c00cd5ec07", "type": "patron", "active": true, "barcode": "857703348667989", "metadata": {"createdDate": "2021-03-09T10:23:09.408", "updatedDate": "2021-03-09T10:23:09.408+00:00"}, "personal": {"email": "jayne@crona-and-sons.vn", "phone": "861.179.1850 x832", "lastName": "Hudson", "addresses": [{"city": "West Lafayette", "region": "WV", "countryId": "US", "postalCode": "65210-1372", "addressLine1": "62880 Lauren Route", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Cathrine", "middleName": "Idell", "dateOfBirth": "2010-10-13T00:00:00.000+00:00", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "pearl", "createdDate": "2021-03-09T10:23:09.449+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:23:09.449+00:00", "enrollmentDate": "2015-05-23T00:00:00.000+00:00", "expirationDate": "2019-08-03T00:00:00.000+00:00"} 2021-03-09 10:23:09.408 \N 3684a786-6671-4268-8ed0-9db82ebca60b e25fecaf-dfbf-4e59-bd3d-0493c1b519f5 {"id": "e25fecaf-dfbf-4e59-bd3d-0493c1b519f5", "type": "patron", "active": true, "barcode": "899885926908709", "metadata": {"createdDate": "2021-03-09T10:23:09.527", "updatedDate": "2021-03-09T10:23:09.527+00:00"}, "personal": {"email": "emil@dibbert-bode.iq", "phone": "1-612-669-7014", "lastName": "Rutherford", "addresses": [{"city": "Vincennes", "region": "AL", "countryId": "US", "postalCode": "62598", "addressLine1": "30421 Hirthe Cove Suite 577", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Malika", "dateOfBirth": "1952-10-31T00:00:00.000+00:00", "mobilePhone": "1-663-027-5212", "preferredContactTypeId": "003"}, "proxyFor": [], "username": "sam", "createdDate": "2021-03-09T10:23:09.572+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:23:09.572+00:00", "enrollmentDate": "2018-02-22T00:00:00.000+00:00", "expirationDate": "2020-07-19T00:00:00.000+00:00"} 2021-03-09 10:23:09.527 \N 3684a786-6671-4268-8ed0-9db82ebca60b c6d99127-e834-4f60-9a77-f74646cd1618 {"id": "c6d99127-e834-4f60-9a77-f74646cd1618", "type": "patron", "active": true, "barcode": "624284667711407", "metadata": {"createdDate": "2021-03-09T10:23:09.651", "updatedDate": "2021-03-09T10:23:09.651+00:00"}, "personal": {"email": "rosalia@hirthe-raynor.az", "phone": "049.877.6192", "lastName": "Koss", "addresses": [{"city": "Atwater", "region": "NC", "countryId": "US", "postalCode": "28194-0379", "addressLine1": "74210 Front", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Hipolito", "dateOfBirth": "1972-12-13T00:00:00.000+00:00", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "kenneth", "createdDate": "2021-03-09T10:23:09.701+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:23:09.701+00:00", "enrollmentDate": "2018-05-26T00:00:00.000+00:00", "expirationDate": "2019-05-16T00:00:00.000+00:00"} 2021-03-09 10:23:09.651 \N 503a81cd-6c26-400f-b620-14c08943697c f6cd72ab-3e89-44c0-99aa-54ab4844f167 {"id": "f6cd72ab-3e89-44c0-99aa-54ab4844f167", "type": "patron", "active": true, "barcode": "394156228501504", "metadata": {"createdDate": "2021-03-09T10:23:09.781", "updatedDate": "2021-03-09T10:23:09.781+00:00"}, "personal": {"email": "brenna@feil-orn-and-barton.gs", "phone": "206.349.8590 x22816", "lastName": "Kemmer", "addresses": [{"city": "Pico Rivera", "region": "GU", "countryId": "US", "postalCode": "02012-8845", "addressLine1": "84557 Trailer 8", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Khalil", "middleName": "Camylle", "dateOfBirth": "2005-07-22T00:00:00.000+00:00", "mobilePhone": "(918)523-4719 x006", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "jennyfer", "createdDate": "2021-03-09T10:23:09.827+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:23:09.827+00:00", "enrollmentDate": "2015-05-23T00:00:00.000+00:00", "expirationDate": "2020-09-24T00:00:00.000+00:00"} 2021-03-09 10:23:09.781 \N 503a81cd-6c26-400f-b620-14c08943697c d20d2f4e-6356-4dc3-b7b1-8b9fb5564e02 {"id": "d20d2f4e-6356-4dc3-b7b1-8b9fb5564e02", "type": "patron", "active": true, "barcode": "925090589996688", "metadata": {"createdDate": "2021-03-09T10:23:09.912", "updatedDate": "2021-03-09T10:23:09.912+00:00"}, "personal": {"email": "scarlett@roberts-weber-and-rice.fi", "phone": "1-352-388-0288", "lastName": "Hyatt", "addresses": [{"city": "Tuskegee", "region": "KS", "countryId": "US", "postalCode": "45078-8730", "addressLine1": "84256 Unit I", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Juston", "middleName": "Green", "dateOfBirth": "1980-02-07T00:00:00.000+00:00", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "irving", "createdDate": "2021-03-09T10:23:09.960+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:23:09.960+00:00", "enrollmentDate": "2018-01-18T00:00:00.000+00:00", "expirationDate": "2020-11-09T00:00:00.000+00:00"} 2021-03-09 10:23:09.912 \N 503a81cd-6c26-400f-b620-14c08943697c e505acd3-925e-4e2c-a255-8d11e25ba046 {"id": "e505acd3-925e-4e2c-a255-8d11e25ba046", "type": "patron", "active": false, "barcode": "889982096201116", "metadata": {"createdDate": "2021-03-09T10:23:10.038", "updatedDate": "2021-03-09T10:23:10.038+00:00"}, "personal": {"email": "holden@mitchell-group.om", "phone": "1-035-717-5715 x1958", "lastName": "Koss", "addresses": [{"city": "Nenana", "region": "PA", "countryId": "US", "postalCode": "45376", "addressLine1": "24421 Schumm Tunnel", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Eddie", "middleName": "Rusty", "dateOfBirth": "1952-12-05T00:00:00.000+00:00", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "dessie", "createdDate": "2021-03-09T10:23:10.084+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:23:10.084+00:00", "enrollmentDate": "2016-12-14T00:00:00.000+00:00", "expirationDate": "2020-10-23T00:00:00.000+00:00"} 2021-03-09 10:23:10.038 \N 503a81cd-6c26-400f-b620-14c08943697c 2120fe62-ba0a-4dce-8701-f360368d5c30 {"id": "2120fe62-ba0a-4dce-8701-f360368d5c30", "type": "patron", "active": false, "barcode": "794176129884338", "metadata": {"createdDate": "2021-03-09T10:23:10.168", "updatedDate": "2021-03-09T10:23:10.168+00:00"}, "personal": {"email": "anissa@sanford-and-sons.bv", "phone": "390-670-1991", "lastName": "Beer", "addresses": [{"city": "Mentor", "region": "MT", "countryId": "US", "postalCode": "33381", "addressLine1": "24628 Floor 834", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Branson", "dateOfBirth": "2012-06-29T00:00:00.000+00:00", "mobilePhone": "1-156-445-4163", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "grace", "createdDate": "2021-03-09T10:23:10.218+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:23:10.218+00:00", "enrollmentDate": "2018-05-13T00:00:00.000+00:00", "expirationDate": "2020-02-05T00:00:00.000+00:00"} 2021-03-09 10:23:10.168 \N 3684a786-6671-4268-8ed0-9db82ebca60b 384272bb-efab-4e94-b3b8-f67f20796f20 {"id": "384272bb-efab-4e94-b3b8-f67f20796f20", "type": "patron", "active": true, "barcode": "217874037910807", "metadata": {"createdDate": "2021-03-09T10:23:10.294", "updatedDate": "2021-03-09T10:23:10.294+00:00"}, "personal": {"email": "fredy@lehner-and-sons.sr", "phone": "890-719-9790 x316", "lastName": "Block", "addresses": [{"city": "Fort Smith", "region": "MI", "countryId": "US", "postalCode": "02901", "addressLine1": "67186 Wendy Squares", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Araceli", "middleName": "Avery", "dateOfBirth": "1988-05-07T00:00:00.000+00:00", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "josefa", "createdDate": "2021-03-09T10:23:10.334+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:23:10.334+00:00", "enrollmentDate": "2015-06-25T00:00:00.000+00:00", "expirationDate": "2019-11-23T00:00:00.000+00:00"} 2021-03-09 10:23:10.294 \N ad0bc554-d5bc-463c-85d1-5562127ae91b 30d7e2dd-db23-4832-b4be-30d3f5f83a60 {"id": "30d7e2dd-db23-4832-b4be-30d3f5f83a60", "type": "patron", "active": true, "barcode": "720909484081527", "metadata": {"createdDate": "2021-03-09T10:23:10.412", "updatedDate": "2021-03-09T10:23:10.412+00:00"}, "personal": {"email": "jeremie@bartoletti-wintheiser-and-lindgren.uk", "phone": "012.912.3077", "lastName": "Bednar", "addresses": [{"city": "Santa Rosa", "region": "NE", "countryId": "US", "postalCode": "26407-6171", "addressLine1": "48079 Laney Spurs", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Albin", "middleName": "Gail", "dateOfBirth": "1956-06-06T00:00:00.000+00:00", "mobilePhone": "282-198-8110", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "gilbert", "createdDate": "2021-03-09T10:23:10.456+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:23:10.456+00:00", "enrollmentDate": "2015-04-28T00:00:00.000+00:00", "expirationDate": "2019-11-26T00:00:00.000+00:00"} 2021-03-09 10:23:10.412 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e e546d50a-926a-421f-8400-a041a2e9db79 {"id": "e546d50a-926a-421f-8400-a041a2e9db79", "type": "patron", "active": true, "barcode": "40187925817754", "metadata": {"createdDate": "2021-03-09T10:23:10.535", "updatedDate": "2021-03-09T10:23:10.535+00:00"}, "personal": {"email": "faye@hansen-wintheiser.md", "phone": "1-255-789-1285 x30034", "lastName": "Will", "addresses": [{"city": "Indio", "region": "DC", "countryId": "US", "postalCode": "83373-0011", "addressLine1": "86537 Penthouse", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Name", "middleName": "Jettie", "dateOfBirth": "1989-08-21T00:00:00.000+00:00", "mobilePhone": "1-090-543-7327 x2335", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "ben", "createdDate": "2021-03-09T10:23:10.587+00:00", "departments": [], "patronGroup": "3684a786-6671-4268-8ed0-9db82ebca60b", "updatedDate": "2021-03-09T10:23:10.587+00:00", "enrollmentDate": "2018-09-22T00:00:00.000+00:00", "expirationDate": "2020-11-12T00:00:00.000+00:00"} 2021-03-09 10:23:10.535 \N 3684a786-6671-4268-8ed0-9db82ebca60b abad6503-a51b-4fec-a1cd-b5f672b1ff7b {"id": "abad6503-a51b-4fec-a1cd-b5f672b1ff7b", "type": "patron", "active": true, "barcode": "960595246465651", "metadata": {"createdDate": "2021-03-09T10:23:10.669", "updatedDate": "2021-03-09T10:23:10.669+00:00"}, "personal": {"email": "luis@bayer-breitenberg.zw", "phone": "166.903.9433", "lastName": "Mraz", "addresses": [{"city": "Compton", "region": "TN", "countryId": "US", "postalCode": "63640", "addressLine1": "41391 Geoffrey Pines #905", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Kyleigh", "middleName": "Tobin", "dateOfBirth": "2012-11-19T00:00:00.000+00:00", "preferredContactTypeId": "005"}, "proxyFor": [], "username": "maximo", "createdDate": "2021-03-09T10:23:10.715+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:23:10.715+00:00", "enrollmentDate": "2016-03-01T00:00:00.000+00:00", "expirationDate": "2020-12-19T00:00:00.000+00:00"} 2021-03-09 10:23:10.669 \N ad0bc554-d5bc-463c-85d1-5562127ae91b fa18e51c-50d9-4fe3-ab58-c592ea30328a {"id": "fa18e51c-50d9-4fe3-ab58-c592ea30328a", "type": "patron", "active": false, "barcode": "14017302496370", "metadata": {"createdDate": "2021-03-09T10:23:10.793", "updatedDate": "2021-03-09T10:23:10.793+00:00"}, "personal": {"email": "reinhold@swaniawski-hane.km", "phone": "(278)436-8225", "lastName": "Erdman", "addresses": [{"city": "South Gate", "region": "AR", "countryId": "US", "postalCode": "48997", "addressLine1": "92110 Wolf Gateway", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Stevie", "dateOfBirth": "2010-05-03T00:00:00.000+00:00", "mobilePhone": "(271)541-3712", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "deanna", "createdDate": "2021-03-09T10:23:10.835+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:23:10.835+00:00", "enrollmentDate": "2016-09-17T00:00:00.000+00:00", "expirationDate": "2019-09-09T00:00:00.000+00:00"} 2021-03-09 10:23:10.793 \N 503a81cd-6c26-400f-b620-14c08943697c f5d7aed2-1647-4e83-b85e-74760f770799 {"id": "f5d7aed2-1647-4e83-b85e-74760f770799", "type": "patron", "active": true, "barcode": "78306618161899", "metadata": {"createdDate": "2021-03-09T10:23:10.918", "updatedDate": "2021-03-09T10:23:10.918+00:00"}, "personal": {"email": "litzy@sawayn-turcotte.dz", "phone": "815-667-5143", "lastName": "Homenick", "addresses": [{"city": "Merced", "region": "MD", "countryId": "US", "postalCode": "00187-3930", "addressLine1": "26178 Oberbrunner Drive", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Coby", "middleName": "Wanda", "dateOfBirth": "1948-03-26T00:00:00.000+00:00", "mobilePhone": "(056)300-3670 x808", "preferredContactTypeId": "001"}, "proxyFor": [], "username": "clifford", "createdDate": "2021-03-09T10:23:10.968+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:23:10.968+00:00", "enrollmentDate": "2019-02-16T00:00:00.000+00:00", "expirationDate": "2019-04-15T00:00:00.000+00:00"} 2021-03-09 10:23:10.918 \N 503a81cd-6c26-400f-b620-14c08943697c 78a21fb3-0e80-4172-8ccf-8a1d8d5e1553 {"id": "78a21fb3-0e80-4172-8ccf-8a1d8d5e1553", "type": "patron", "active": true, "barcode": "27389356499174", "metadata": {"createdDate": "2021-03-09T10:23:11.05", "updatedDate": "2021-03-09T10:23:11.050+00:00"}, "personal": {"email": "dianna@collier-marvin-and-nicolas.hr", "phone": "803-699-5998 x797", "lastName": "Stokes", "addresses": [{"city": "Claremont", "region": "UT", "countryId": "US", "postalCode": "71396", "addressLine1": "02319 Department 2-G", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Sonny", "middleName": "Patsy", "dateOfBirth": "1987-09-24T00:00:00.000+00:00", "mobilePhone": "1-071-148-9177 x9621", "preferredContactTypeId": "002"}, "proxyFor": [], "username": "lincoln", "createdDate": "2021-03-09T10:23:11.096+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:23:11.096+00:00", "enrollmentDate": "2017-04-19T00:00:00.000+00:00", "expirationDate": "2020-03-01T00:00:00.000+00:00"} 2021-03-09 10:23:11.05 \N ad0bc554-d5bc-463c-85d1-5562127ae91b 1be7f410-6ec3-4e88-ac25-0f8d8c63274d {"id": "1be7f410-6ec3-4e88-ac25-0f8d8c63274d", "type": "patron", "active": true, "barcode": "406086566903262", "metadata": {"createdDate": "2021-03-09T10:23:11.18", "updatedDate": "2021-03-09T10:23:11.180+00:00"}, "personal": {"email": "stan@greenfelder-and-sons.us", "phone": "1-571-266-1145 x226", "lastName": "Kuhlman", "addresses": [{"city": "Bell", "region": "TX", "countryId": "US", "postalCode": "03426-7916", "addressLine1": "40975 Nolan Streets", "addressTypeId": "1c4b225f-f669-4e9b-afcd-ebc0e273a34e", "primaryAddress": true}], "firstName": "Ruby", "dateOfBirth": "1962-03-27T00:00:00.000+00:00", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "marilyne", "createdDate": "2021-03-09T10:23:11.233+00:00", "departments": [], "patronGroup": "ad0bc554-d5bc-463c-85d1-5562127ae91b", "updatedDate": "2021-03-09T10:23:11.233+00:00", "enrollmentDate": "2017-05-25T00:00:00.000+00:00", "expirationDate": "2020-01-12T00:00:00.000+00:00"} 2021-03-09 10:23:11.18 \N ad0bc554-d5bc-463c-85d1-5562127ae91b fad510e6-5b8d-4b10-b846-ce6ff7457629 {"id": "fad510e6-5b8d-4b10-b846-ce6ff7457629", "type": "patron", "active": false, "barcode": "496391043594936", "metadata": {"createdDate": "2021-03-09T10:23:11.313", "updatedDate": "2021-03-09T10:23:11.313+00:00"}, "personal": {"email": "michelle@schuster-mcdermott.dk", "phone": "128-753-2651 x6176", "lastName": "Schaefer", "addresses": [{"city": "Gary", "region": "IA", "countryId": "US", "postalCode": "40684", "addressLine1": "38258 Wiza Village Suite 811", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Colten", "middleName": "Renee", "dateOfBirth": "1951-11-08T00:00:00.000+00:00", "mobilePhone": "444.448.7359 x459", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "mikel", "createdDate": "2021-03-09T10:23:11.358+00:00", "departments": [], "patronGroup": "503a81cd-6c26-400f-b620-14c08943697c", "updatedDate": "2021-03-09T10:23:11.358+00:00", "enrollmentDate": "2017-03-05T00:00:00.000+00:00", "expirationDate": "2019-08-19T00:00:00.000+00:00"} 2021-03-09 10:23:11.313 \N 503a81cd-6c26-400f-b620-14c08943697c f45d047f-248d-424a-9571-8b1249279c02 {"id": "f45d047f-248d-424a-9571-8b1249279c02", "type": "patron", "active": true, "barcode": "349385534992855", "metadata": {"createdDate": "2021-03-09T10:23:11.436", "updatedDate": "2021-03-09T10:23:11.436+00:00"}, "personal": {"email": "hiram@hettinger-kirlin.mil", "phone": "445-071-4422 x37216", "lastName": "Lockman", "addresses": [{"city": "Valparaiso", "region": "NC", "countryId": "US", "postalCode": "42914-2711", "addressLine1": "51190 Rempel Islands Apt. 599", "addressTypeId": "93d3d88d-499b-45d0-9bc7-ac73c3a19880", "primaryAddress": true}], "firstName": "Destiney", "dateOfBirth": "2009-09-18T00:00:00.000+00:00", "preferredContactTypeId": "004"}, "proxyFor": [], "username": "mollie", "createdDate": "2021-03-09T10:23:11.479+00:00", "departments": [], "patronGroup": "bdc2b6d4-5ceb-4a12-ab46-249b9a68473e", "updatedDate": "2021-03-09T10:23:11.479+00:00", "enrollmentDate": "2015-11-11T00:00:00.000+00:00", "expirationDate": "2021-01-02T00:00:00.000+00:00"} 2021-03-09 10:23:11.436 \N bdc2b6d4-5ceb-4a12-ab46-249b9a68473e \. -- -- TOC entry 3088 (class 0 OID 0) -- Dependencies: 199 -- Name: rmb_internal_id_seq; Type: SEQUENCE SET; Schema: testtenant_mod_users; Owner: folio -- SELECT pg_catalog.setval('testtenant_mod_users.rmb_internal_id_seq', 1, true); -- -- TOC entry 2902 (class 2606 OID 17111) -- Name: addresstype addresstype_pkey; Type: CONSTRAINT; Schema: testtenant_mod_users; Owner: folio -- ALTER TABLE ONLY testtenant_mod_users.addresstype ADD CONSTRAINT addresstype_pkey PRIMARY KEY (id); -- -- TOC entry 2908 (class 2606 OID 17145) -- Name: custom_fields custom_fields_pkey; Type: CONSTRAINT; Schema: testtenant_mod_users; Owner: folio -- ALTER TABLE ONLY testtenant_mod_users.custom_fields ADD CONSTRAINT custom_fields_pkey PRIMARY KEY (id); -- -- TOC entry 2874 (class 2606 OID 17054) -- Name: departments departments_pkey; Type: CONSTRAINT; Schema: testtenant_mod_users; Owner: folio -- ALTER TABLE ONLY testtenant_mod_users.departments ADD CONSTRAINT departments_pkey PRIMARY KEY (id); -- -- TOC entry 2870 (class 2606 OID 17040) -- Name: groups groups_pkey; Type: CONSTRAINT; Schema: testtenant_mod_users; Owner: folio -- ALTER TABLE ONLY testtenant_mod_users.groups ADD CONSTRAINT groups_pkey PRIMARY KEY (id); -- -- TOC entry 2904 (class 2606 OID 17125) -- Name: proxyfor proxyfor_pkey; Type: CONSTRAINT; Schema: testtenant_mod_users; Owner: folio -- ALTER TABLE ONLY testtenant_mod_users.proxyfor ADD CONSTRAINT proxyfor_pkey PRIMARY KEY (id); -- -- TOC entry 2867 (class 2606 OID 17005) -- Name: rmb_internal_index rmb_internal_index_pkey; Type: CONSTRAINT; Schema: testtenant_mod_users; Owner: folio -- ALTER TABLE ONLY testtenant_mod_users.rmb_internal_index ADD CONSTRAINT rmb_internal_index_pkey PRIMARY KEY (name); -- -- TOC entry 2865 (class 2606 OID 16997) -- Name: rmb_internal rmb_internal_pkey; Type: CONSTRAINT; Schema: testtenant_mod_users; Owner: folio -- ALTER TABLE ONLY testtenant_mod_users.rmb_internal ADD CONSTRAINT rmb_internal_pkey PRIMARY KEY (id); -- -- TOC entry 2910 (class 2606 OID 17185) -- Name: rmb_job rmb_job_pkey; Type: CONSTRAINT; Schema: testtenant_mod_users; Owner: folio -- ALTER TABLE ONLY testtenant_mod_users.rmb_job ADD CONSTRAINT rmb_job_pkey PRIMARY KEY (id); -- -- TOC entry 2896 (class 2606 OID 17069) -- Name: users users_pkey; Type: CONSTRAINT; Schema: testtenant_mod_users; Owner: folio -- ALTER TABLE ONLY testtenant_mod_users.users ADD CONSTRAINT users_pkey PRIMARY KEY (id); -- -- TOC entry 2900 (class 1259 OID 17113) -- Name: addresstype_addresstype_idx_unique; Type: INDEX; Schema: testtenant_mod_users; Owner: folio -- CREATE UNIQUE INDEX addresstype_addresstype_idx_unique ON testtenant_mod_users.addresstype USING btree (lower(testtenant_mod_users.f_unaccent((jsonb ->> 'addressType'::text)))); -- -- TOC entry 2871 (class 1259 OID 17057) -- Name: departments_code_idx_unique; Type: INDEX; Schema: testtenant_mod_users; Owner: folio -- CREATE UNIQUE INDEX departments_code_idx_unique ON testtenant_mod_users.departments USING btree (lower(testtenant_mod_users.f_unaccent((jsonb ->> 'code'::text)))); -- -- TOC entry 2872 (class 1259 OID 17056) -- Name: departments_name_idx_unique; Type: INDEX; Schema: testtenant_mod_users; Owner: folio -- CREATE UNIQUE INDEX departments_name_idx_unique ON testtenant_mod_users.departments USING btree (lower(testtenant_mod_users.f_unaccent((jsonb ->> 'name'::text)))); -- -- TOC entry 2868 (class 1259 OID 17042) -- Name: groups_group_idx_unique; Type: INDEX; Schema: testtenant_mod_users; Owner: folio -- CREATE UNIQUE INDEX groups_group_idx_unique ON testtenant_mod_users.groups USING btree (lower(testtenant_mod_users.f_unaccent((jsonb ->> 'group'::text)))); -- -- TOC entry 2905 (class 1259 OID 17128) -- Name: proxyfor_proxyuserid_idx_ft; Type: INDEX; Schema: testtenant_mod_users; Owner: folio -- CREATE INDEX proxyfor_proxyuserid_idx_ft ON testtenant_mod_users.proxyfor USING gin (testtenant_mod_users.get_tsvector(testtenant_mod_users.f_unaccent((jsonb ->> 'proxyUserId'::text)))); -- -- TOC entry 2906 (class 1259 OID 17127) -- Name: proxyfor_userid_idx_gin; Type: INDEX; Schema: testtenant_mod_users; Owner: folio -- CREATE INDEX proxyfor_userid_idx_gin ON testtenant_mod_users.proxyfor USING gin (lower(testtenant_mod_users.f_unaccent((jsonb ->> 'userId'::text))) public.gin_trgm_ops); -- -- TOC entry 2875 (class 1259 OID 17090) -- Name: users_active_idx_ft; Type: INDEX; Schema: testtenant_mod_users; Owner: folio -- CREATE INDEX users_active_idx_ft ON testtenant_mod_users.users USING gin (testtenant_mod_users.get_tsvector(testtenant_mod_users.f_unaccent((jsonb ->> 'active'::text)))); -- -- TOC entry 2876 (class 1259 OID 17083) -- Name: users_active_idx_gin; Type: INDEX; Schema: testtenant_mod_users; Owner: folio -- CREATE INDEX users_active_idx_gin ON testtenant_mod_users.users USING gin (lower(testtenant_mod_users.f_unaccent((jsonb ->> 'active'::text))) public.gin_trgm_ops); -- -- TOC entry 2877 (class 1259 OID 17085) -- Name: users_barcode_idx_ft; Type: INDEX; Schema: testtenant_mod_users; Owner: folio -- CREATE INDEX users_barcode_idx_ft ON testtenant_mod_users.users USING gin (testtenant_mod_users.get_tsvector(testtenant_mod_users.f_unaccent((jsonb ->> 'barcode'::text)))); -- -- TOC entry 2878 (class 1259 OID 17081) -- Name: users_barcode_idx_gin; Type: INDEX; Schema: testtenant_mod_users; Owner: folio -- CREATE INDEX users_barcode_idx_gin ON testtenant_mod_users.users USING gin (lower(testtenant_mod_users.f_unaccent((jsonb ->> 'barcode'::text))) public.gin_trgm_ops); -- -- TOC entry 2879 (class 1259 OID 17076) -- Name: users_barcode_idx_unique; Type: INDEX; Schema: testtenant_mod_users; Owner: folio -- CREATE UNIQUE INDEX users_barcode_idx_unique ON testtenant_mod_users.users USING btree (lower(testtenant_mod_users.f_unaccent((jsonb ->> 'barcode'::text)))); -- -- TOC entry 2880 (class 1259 OID 17155) -- Name: users_departments_idx_gin; Type: INDEX; Schema: testtenant_mod_users; Owner: folio -- CREATE INDEX users_departments_idx_gin ON testtenant_mod_users.users USING gin (((jsonb -> 'departments'::text))); -- -- TOC entry 2881 (class 1259 OID 17074) -- Name: users_expirationdate_idx; Type: INDEX; Schema: testtenant_mod_users; Owner: folio -- CREATE INDEX users_expirationdate_idx ON testtenant_mod_users.users USING btree ("left"((jsonb ->> 'expirationDate'::text), 600)); -- -- TOC entry 2882 (class 1259 OID 17071) -- Name: users_externalsystemid_idx; Type: INDEX; Schema: testtenant_mod_users; Owner: folio -- CREATE INDEX users_externalsystemid_idx ON testtenant_mod_users.users USING btree ("left"(lower(testtenant_mod_users.f_unaccent((jsonb ->> 'externalSystemId'::text))), 600)); -- -- TOC entry 2883 (class 1259 OID 17089) -- Name: users_externalsystemid_idx_ft; Type: INDEX; Schema: testtenant_mod_users; Owner: folio -- CREATE INDEX users_externalsystemid_idx_ft ON testtenant_mod_users.users USING gin (testtenant_mod_users.get_tsvector(testtenant_mod_users.f_unaccent((jsonb ->> 'externalSystemId'::text)))); -- -- TOC entry 2884 (class 1259 OID 17082) -- Name: users_externalsystemid_idx_gin; Type: INDEX; Schema: testtenant_mod_users; Owner: folio -- CREATE INDEX users_externalsystemid_idx_gin ON testtenant_mod_users.users USING gin (lower(testtenant_mod_users.f_unaccent((jsonb ->> 'externalSystemId'::text))) public.gin_trgm_ops); -- -- TOC entry 2885 (class 1259 OID 17097) -- Name: users_patrongroup_idx; Type: INDEX; Schema: testtenant_mod_users; Owner: folio -- CREATE INDEX users_patrongroup_idx ON testtenant_mod_users.users USING btree (patrongroup); -- -- TOC entry 2886 (class 1259 OID 17091) -- Name: users_patrongroup_idx_ft; Type: INDEX; Schema: testtenant_mod_users; Owner: folio -- CREATE INDEX users_patrongroup_idx_ft ON testtenant_mod_users.users USING gin (testtenant_mod_users.get_tsvector(testtenant_mod_users.f_unaccent((jsonb ->> 'patronGroup'::text)))); -- -- TOC entry 2887 (class 1259 OID 17088) -- Name: users_personal_email_idx_ft; Type: INDEX; Schema: testtenant_mod_users; Owner: folio -- CREATE INDEX users_personal_email_idx_ft ON testtenant_mod_users.users USING gin (testtenant_mod_users.get_tsvector(testtenant_mod_users.f_unaccent(((jsonb -> 'personal'::text) ->> 'email'::text)))); -- -- TOC entry 2888 (class 1259 OID 17080) -- Name: users_personal_email_idx_gin; Type: INDEX; Schema: testtenant_mod_users; Owner: folio -- CREATE INDEX users_personal_email_idx_gin ON testtenant_mod_users.users USING gin (lower(testtenant_mod_users.f_unaccent(((jsonb -> 'personal'::text) ->> 'email'::text))) public.gin_trgm_ops); -- -- TOC entry 2889 (class 1259 OID 17072) -- Name: users_personal_firstname_idx; Type: INDEX; Schema: testtenant_mod_users; Owner: folio -- CREATE INDEX users_personal_firstname_idx ON testtenant_mod_users.users USING btree ("left"(lower(testtenant_mod_users.f_unaccent(((jsonb -> 'personal'::text) ->> 'firstName'::text))), 600)); -- -- TOC entry 2890 (class 1259 OID 17086) -- Name: users_personal_firstname_idx_ft; Type: INDEX; Schema: testtenant_mod_users; Owner: folio -- CREATE INDEX users_personal_firstname_idx_ft ON testtenant_mod_users.users USING gin (testtenant_mod_users.get_tsvector(testtenant_mod_users.f_unaccent(((jsonb -> 'personal'::text) ->> 'firstName'::text)))); -- -- TOC entry 2891 (class 1259 OID 17078) -- Name: users_personal_firstname_idx_gin; Type: INDEX; Schema: testtenant_mod_users; Owner: folio -- CREATE INDEX users_personal_firstname_idx_gin ON testtenant_mod_users.users USING gin (lower(testtenant_mod_users.f_unaccent(((jsonb -> 'personal'::text) ->> 'firstName'::text))) public.gin_trgm_ops); -- -- TOC entry 2892 (class 1259 OID 17073) -- Name: users_personal_lastname_idx; Type: INDEX; Schema: testtenant_mod_users; Owner: folio -- CREATE INDEX users_personal_lastname_idx ON testtenant_mod_users.users USING btree ("left"(lower(testtenant_mod_users.f_unaccent(((jsonb -> 'personal'::text) ->> 'lastName'::text))), 600)); -- -- TOC entry 2893 (class 1259 OID 17087) -- Name: users_personal_lastname_idx_ft; Type: INDEX; Schema: testtenant_mod_users; Owner: folio -- CREATE INDEX users_personal_lastname_idx_ft ON testtenant_mod_users.users USING gin (testtenant_mod_users.get_tsvector(testtenant_mod_users.f_unaccent(((jsonb -> 'personal'::text) ->> 'lastName'::text)))); -- -- TOC entry 2894 (class 1259 OID 17079) -- Name: users_personal_lastname_idx_gin; Type: INDEX; Schema: testtenant_mod_users; Owner: folio -- CREATE INDEX users_personal_lastname_idx_gin ON testtenant_mod_users.users USING gin (lower(testtenant_mod_users.f_unaccent(((jsonb -> 'personal'::text) ->> 'lastName'::text))) public.gin_trgm_ops); -- -- TOC entry 2897 (class 1259 OID 17084) -- Name: users_username_idx_ft; Type: INDEX; Schema: testtenant_mod_users; Owner: folio -- CREATE INDEX users_username_idx_ft ON testtenant_mod_users.users USING gin (testtenant_mod_users.get_tsvector(testtenant_mod_users.f_unaccent((jsonb ->> 'username'::text)))); -- -- TOC entry 2898 (class 1259 OID 17077) -- Name: users_username_idx_gin; Type: INDEX; Schema: testtenant_mod_users; Owner: folio -- CREATE INDEX users_username_idx_gin ON testtenant_mod_users.users USING gin (lower(testtenant_mod_users.f_unaccent((jsonb ->> 'username'::text))) public.gin_trgm_ops); -- -- TOC entry 2899 (class 1259 OID 17075) -- Name: users_username_idx_unique; Type: INDEX; Schema: testtenant_mod_users; Owner: folio -- CREATE UNIQUE INDEX users_username_idx_unique ON testtenant_mod_users.users USING btree (lower(testtenant_mod_users.f_unaccent((jsonb ->> 'username'::text)))); -- -- TOC entry 3055 (class 2618 OID 17159) -- Name: departments_view _RETURN; Type: RULE; Schema: testtenant_mod_users; Owner: folio -- CREATE OR REPLACE VIEW testtenant_mod_users.departments_view AS SELECT d.id, jsonb_set(d.jsonb, '{usageNumber}'::text[], to_jsonb(count(u.*))) AS jsonb FROM (testtenant_mod_users.departments d LEFT JOIN testtenant_mod_users.users u ON (((u.jsonb -> 'departments'::text) ? (d.id)::text))) GROUP BY d.id; -- -- TOC entry 2919 (class 2620 OID 17161) -- Name: users process_department_assign_trigger; Type: TRIGGER; Schema: testtenant_mod_users; Owner: folio -- CREATE TRIGGER process_department_assign_trigger BEFORE INSERT OR UPDATE ON testtenant_mod_users.users FOR EACH ROW EXECUTE PROCEDURE testtenant_mod_users.process_department_assign(); -- -- TOC entry 2915 (class 2620 OID 17163) -- Name: departments process_department_delete_trigger; Type: TRIGGER; Schema: testtenant_mod_users; Owner: folio -- CREATE TRIGGER process_department_delete_trigger BEFORE DELETE ON testtenant_mod_users.departments FOR EACH ROW EXECUTE PROCEDURE testtenant_mod_users.process_department_delete(); -- -- TOC entry 2924 (class 2620 OID 17117) -- Name: addresstype set_addresstype_md_json_trigger; Type: TRIGGER; Schema: testtenant_mod_users; Owner: folio -- CREATE TRIGGER set_addresstype_md_json_trigger BEFORE UPDATE ON testtenant_mod_users.addresstype FOR EACH ROW EXECUTE PROCEDURE testtenant_mod_users.set_addresstype_md_json(); -- -- TOC entry 2925 (class 2620 OID 17115) -- Name: addresstype set_addresstype_md_trigger; Type: TRIGGER; Schema: testtenant_mod_users; Owner: folio -- CREATE TRIGGER set_addresstype_md_trigger BEFORE INSERT ON testtenant_mod_users.addresstype FOR EACH ROW EXECUTE PROCEDURE testtenant_mod_users.addresstype_set_md(); -- -- TOC entry 2930 (class 2620 OID 17148) -- Name: custom_fields set_custom_fields_md_json_trigger; Type: TRIGGER; Schema: testtenant_mod_users; Owner: folio -- CREATE TRIGGER set_custom_fields_md_json_trigger BEFORE UPDATE ON testtenant_mod_users.custom_fields FOR EACH ROW EXECUTE PROCEDURE testtenant_mod_users.set_custom_fields_md_json(); -- -- TOC entry 2916 (class 2620 OID 17061) -- Name: departments set_departments_md_json_trigger; Type: TRIGGER; Schema: testtenant_mod_users; Owner: folio -- CREATE TRIGGER set_departments_md_json_trigger BEFORE UPDATE ON testtenant_mod_users.departments FOR EACH ROW EXECUTE PROCEDURE testtenant_mod_users.set_departments_md_json(); -- -- TOC entry 2917 (class 2620 OID 17059) -- Name: departments set_departments_md_trigger; Type: TRIGGER; Schema: testtenant_mod_users; Owner: folio -- CREATE TRIGGER set_departments_md_trigger BEFORE INSERT ON testtenant_mod_users.departments FOR EACH ROW EXECUTE PROCEDURE testtenant_mod_users.departments_set_md(); -- -- TOC entry 2912 (class 2620 OID 17046) -- Name: groups set_groups_md_json_trigger; Type: TRIGGER; Schema: testtenant_mod_users; Owner: folio -- CREATE TRIGGER set_groups_md_json_trigger BEFORE UPDATE ON testtenant_mod_users.groups FOR EACH ROW EXECUTE PROCEDURE testtenant_mod_users.set_groups_md_json(); -- -- TOC entry 2913 (class 2620 OID 17044) -- Name: groups set_groups_md_trigger; Type: TRIGGER; Schema: testtenant_mod_users; Owner: folio -- CREATE TRIGGER set_groups_md_trigger BEFORE INSERT ON testtenant_mod_users.groups FOR EACH ROW EXECUTE PROCEDURE testtenant_mod_users.groups_set_md(); -- -- TOC entry 2926 (class 2620 OID 17112) -- Name: addresstype set_id_in_jsonb; Type: TRIGGER; Schema: testtenant_mod_users; Owner: folio -- CREATE TRIGGER set_id_in_jsonb BEFORE INSERT OR UPDATE ON testtenant_mod_users.addresstype FOR EACH ROW EXECUTE PROCEDURE testtenant_mod_users.set_id_in_jsonb(); -- -- TOC entry 2931 (class 2620 OID 17146) -- Name: custom_fields set_id_in_jsonb; Type: TRIGGER; Schema: testtenant_mod_users; Owner: folio -- CREATE TRIGGER set_id_in_jsonb BEFORE INSERT OR UPDATE ON testtenant_mod_users.custom_fields FOR EACH ROW EXECUTE PROCEDURE testtenant_mod_users.set_id_in_jsonb(); -- -- TOC entry 2918 (class 2620 OID 17055) -- Name: departments set_id_in_jsonb; Type: TRIGGER; Schema: testtenant_mod_users; Owner: folio -- CREATE TRIGGER set_id_in_jsonb BEFORE INSERT OR UPDATE ON testtenant_mod_users.departments FOR EACH ROW EXECUTE PROCEDURE testtenant_mod_users.set_id_in_jsonb(); -- -- TOC entry 2914 (class 2620 OID 17041) -- Name: groups set_id_in_jsonb; Type: TRIGGER; Schema: testtenant_mod_users; Owner: folio -- CREATE TRIGGER set_id_in_jsonb BEFORE INSERT OR UPDATE ON testtenant_mod_users.groups FOR EACH ROW EXECUTE PROCEDURE testtenant_mod_users.set_id_in_jsonb(); -- -- TOC entry 2927 (class 2620 OID 17126) -- Name: proxyfor set_id_in_jsonb; Type: TRIGGER; Schema: testtenant_mod_users; Owner: folio -- CREATE TRIGGER set_id_in_jsonb BEFORE INSERT OR UPDATE ON testtenant_mod_users.proxyfor FOR EACH ROW EXECUTE PROCEDURE testtenant_mod_users.set_id_in_jsonb(); -- -- TOC entry 2920 (class 2620 OID 17070) -- Name: users set_id_in_jsonb; Type: TRIGGER; Schema: testtenant_mod_users; Owner: folio -- CREATE TRIGGER set_id_in_jsonb BEFORE INSERT OR UPDATE ON testtenant_mod_users.users FOR EACH ROW EXECUTE PROCEDURE testtenant_mod_users.set_id_in_jsonb(); -- -- TOC entry 2928 (class 2620 OID 17132) -- Name: proxyfor set_proxyfor_md_json_trigger; Type: TRIGGER; Schema: testtenant_mod_users; Owner: folio -- CREATE TRIGGER set_proxyfor_md_json_trigger BEFORE UPDATE ON testtenant_mod_users.proxyfor FOR EACH ROW EXECUTE PROCEDURE testtenant_mod_users.set_proxyfor_md_json(); -- -- TOC entry 2929 (class 2620 OID 17130) -- Name: proxyfor set_proxyfor_md_trigger; Type: TRIGGER; Schema: testtenant_mod_users; Owner: folio -- CREATE TRIGGER set_proxyfor_md_trigger BEFORE INSERT ON testtenant_mod_users.proxyfor FOR EACH ROW EXECUTE PROCEDURE testtenant_mod_users.proxyfor_set_md(); -- -- TOC entry 2921 (class 2620 OID 17103) -- Name: users set_users_md_json_trigger; Type: TRIGGER; Schema: testtenant_mod_users; Owner: folio -- CREATE TRIGGER set_users_md_json_trigger BEFORE UPDATE ON testtenant_mod_users.users FOR EACH ROW EXECUTE PROCEDURE testtenant_mod_users.set_users_md_json(); -- -- TOC entry 2922 (class 2620 OID 17101) -- Name: users set_users_md_trigger; Type: TRIGGER; Schema: testtenant_mod_users; Owner: folio -- CREATE TRIGGER set_users_md_trigger BEFORE INSERT ON testtenant_mod_users.users FOR EACH ROW EXECUTE PROCEDURE testtenant_mod_users.users_set_md(); -- -- TOC entry 2932 (class 2620 OID 17154) -- Name: custom_fields update_ref_id_trigger; Type: TRIGGER; Schema: testtenant_mod_users; Owner: folio -- CREATE TRIGGER update_ref_id_trigger BEFORE UPDATE ON testtenant_mod_users.custom_fields FOR EACH ROW EXECUTE PROCEDURE testtenant_mod_users.update_ref_id(); -- -- TOC entry 2923 (class 2620 OID 17187) -- Name: users update_users_references; Type: TRIGGER; Schema: testtenant_mod_users; Owner: folio -- CREATE TRIGGER update_users_references BEFORE INSERT OR UPDATE ON testtenant_mod_users.users FOR EACH ROW EXECUTE PROCEDURE testtenant_mod_users.update_users_references(); -- -- TOC entry 2911 (class 2606 OID 17092) -- Name: users patrongroup_groups_fkey; Type: FK CONSTRAINT; Schema: testtenant_mod_users; Owner: folio -- ALTER TABLE ONLY testtenant_mod_users.users ADD CONSTRAINT patrongroup_groups_fkey FOREIGN KEY (patrongroup) REFERENCES testtenant_mod_users.groups(id); -- -- TOC entry 3072 (class 0 OID 0) -- Dependencies: 5 -- Name: SCHEMA public; Type: ACL; Schema: -; Owner: postgres -- REVOKE ALL ON SCHEMA public FROM PUBLIC; GRANT USAGE ON SCHEMA public TO PUBLIC; -- -- TOC entry 3075 (class 0 OID 0) -- Dependencies: 206 -- Name: TABLE addresstype; Type: ACL; Schema: testtenant_mod_users; Owner: folio -- GRANT ALL ON TABLE testtenant_mod_users.addresstype TO testtenant_mod_users; -- -- TOC entry 3076 (class 0 OID 0) -- Dependencies: 209 -- Name: TABLE custom_fields; Type: ACL; Schema: testtenant_mod_users; Owner: folio -- GRANT ALL ON TABLE testtenant_mod_users.custom_fields TO testtenant_mod_users; -- -- TOC entry 3077 (class 0 OID 0) -- Dependencies: 204 -- Name: TABLE departments; Type: ACL; Schema: testtenant_mod_users; Owner: folio -- GRANT ALL ON TABLE testtenant_mod_users.departments TO testtenant_mod_users; -- -- TOC entry 3078 (class 0 OID 0) -- Dependencies: 210 -- Name: TABLE departments_view; Type: ACL; Schema: testtenant_mod_users; Owner: folio -- GRANT ALL ON TABLE testtenant_mod_users.departments_view TO testtenant_mod_users; -- -- TOC entry 3079 (class 0 OID 0) -- Dependencies: 203 -- Name: TABLE groups; Type: ACL; Schema: testtenant_mod_users; Owner: folio -- GRANT ALL ON TABLE testtenant_mod_users.groups TO testtenant_mod_users; -- -- TOC entry 3080 (class 0 OID 0) -- Dependencies: 207 -- Name: TABLE proxyfor; Type: ACL; Schema: testtenant_mod_users; Owner: folio -- GRANT ALL ON TABLE testtenant_mod_users.proxyfor TO testtenant_mod_users; -- -- TOC entry 3081 (class 0 OID 0) -- Dependencies: 200 -- Name: TABLE rmb_internal; Type: ACL; Schema: testtenant_mod_users; Owner: folio -- GRANT ALL ON TABLE testtenant_mod_users.rmb_internal TO testtenant_mod_users; -- -- TOC entry 3082 (class 0 OID 0) -- Dependencies: 202 -- Name: TABLE rmb_internal_analyze; Type: ACL; Schema: testtenant_mod_users; Owner: folio -- GRANT ALL ON TABLE testtenant_mod_users.rmb_internal_analyze TO testtenant_mod_users; -- -- TOC entry 3084 (class 0 OID 0) -- Dependencies: 201 -- Name: TABLE rmb_internal_index; Type: ACL; Schema: testtenant_mod_users; Owner: folio -- GRANT ALL ON TABLE testtenant_mod_users.rmb_internal_index TO testtenant_mod_users; -- -- TOC entry 3085 (class 0 OID 0) -- Dependencies: 211 -- Name: TABLE rmb_job; Type: ACL; Schema: testtenant_mod_users; Owner: folio -- GRANT ALL ON TABLE testtenant_mod_users.rmb_job TO testtenant_mod_users; -- -- TOC entry 3086 (class 0 OID 0) -- Dependencies: 205 -- Name: TABLE users; Type: ACL; Schema: testtenant_mod_users; Owner: folio -- GRANT ALL ON TABLE testtenant_mod_users.users TO testtenant_mod_users; -- -- TOC entry 3087 (class 0 OID 0) -- Dependencies: 208 -- Name: TABLE users_groups_view; Type: ACL; Schema: testtenant_mod_users; Owner: folio -- GRANT ALL ON TABLE testtenant_mod_users.users_groups_view TO testtenant_mod_users; -- Completed on 2021-03-09 16:01:01 -- -- PostgreSQL database dump complete --